Revision 250
Added by ryan almost 19 years ago
comment_page.php | ||
---|---|---|
27 | 27 |
if(!defined('WB_URL')) { header('Location: ../index.php'); } |
28 | 28 |
|
29 | 29 |
// Get comments page template details from db |
30 |
$query_settings = $database->query("SELECT comments_page FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '".SECTION_ID."'"); |
|
30 |
$query_settings = $database->query("SELECT comments_page,use_captcha FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '".SECTION_ID."'");
|
|
31 | 31 |
if($query_settings->numRows() == 0) { |
32 | 32 |
header('Location: '.WB_URL.'/pages/'); |
33 | 33 |
} else { |
34 | 34 |
$settings = $query_settings->fetchRow(); |
35 | 35 |
// Print comments page |
36 |
$vars = array('[POST_TITLE]', '[ACTION_URL]'); |
|
37 |
$values = array(POST_TITLE, WB_URL.'/modules/news/submit_comment.php?page_id='.PAGE_ID.'§ion_id='.SECTION_ID.'&post_id='.POST_ID); |
|
38 |
echo str_replace($vars, $values, ($settings['comments_page'])); |
|
36 |
echo str_replace('[POST_TITLE]', POST_TITLE, ($settings['comments_page'])); |
|
37 |
?> |
|
38 |
<form name="comment" action="<?php echo WB_URL.'/modules/news/submit_comment.php?page_id='.PAGE_ID.'§ion_id='.SECTION_ID.'&post_id='.POST_ID; ?>" method="post"> |
|
39 |
<?php echo $TEXT['TITLE']; ?>: |
|
40 |
<br /> |
|
41 |
<input type="text" name="title" maxlength="255" style="width: 90%;"<?php if(isset($_SESSION['comment_title'])) { echo ' value="'.$_SESSION['comment_title'].'"'; unset($_SESSION['comment_title']); } ?> /> |
|
42 |
<br /><br /> |
|
43 |
<?php echo $TEXT['COMMENT']; ?>: |
|
44 |
<br /> |
|
45 |
<textarea name="comment" style="width: 90%; height: 150px;"><?php if(isset($_SESSION['comment_body'])) { echo $_SESSION['comment_body']; unset($_SESSION['comment_body']); } ?></textarea> |
|
46 |
<br /><br /> |
|
47 |
<?php |
|
48 |
if(isset($_SESSION['captcha_error'])) { |
|
49 |
echo '<font color="#FF0000">'.$_SESSION['captcha_error'].'</font><br />'; |
|
50 |
unset($_SESSION['captcha_error']); |
|
51 |
} |
|
52 |
// Captcha |
|
53 |
if($settings['use_captcha']) { |
|
54 |
$_SESSION['captcha'] = ''; |
|
55 |
for($i = 0; $i < 5; $i++) { |
|
56 |
$_SESSION['captcha'] .= rand(0,9); |
|
57 |
} |
|
58 |
?> |
|
59 |
<table cellpadding="2" cellspacing="0" border="0"> |
|
60 |
<tr> |
|
61 |
<td><?php echo $TEXT['VERIFICATION']; ?>:</td> |
|
62 |
<td><img src="<?php echo WB_URL; ?>/include/captcha.php" alt="Captcha" /></td> |
|
63 |
<td><input type="text" name="captcha" maxlength="5" /></td> |
|
64 |
</tr></table> |
|
65 |
<br /> |
|
66 |
<?php |
|
67 |
} |
|
68 |
?> |
|
69 |
<input type="submit" name="submit" value="<?php echo $TEXT['ADD']; ?> <?php echo $TEXT['COMMENT']; ?>" /> |
|
70 |
</form> |
|
71 |
<?php |
|
39 | 72 |
} |
40 | 73 |
|
41 | 74 |
?> |
Also available in: Unified diff
Added Captcha to News module