1
|
<?php
|
2
|
|
3
|
// $Id: comment_page.php 563 2008-01-18 23:13:42Z Ruebenwurzel $
|
4
|
|
5
|
/*
|
6
|
|
7
|
Website Baker Project <http://www.websitebaker.org/>
|
8
|
Copyright (C) 2004-2008, Ryan Djurovich
|
9
|
|
10
|
Website Baker is free software; you can redistribute it and/or modify
|
11
|
it under the terms of the GNU General Public License as published by
|
12
|
the Free Software Foundation; either version 2 of the License, or
|
13
|
(at your option) any later version.
|
14
|
|
15
|
Website Baker is distributed in the hope that it will be useful,
|
16
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18
|
GNU General Public License for more details.
|
19
|
|
20
|
You should have received a copy of the GNU General Public License
|
21
|
along with Website Baker; if not, write to the Free Software
|
22
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23
|
|
24
|
*/
|
25
|
|
26
|
// Make sure page cannot be accessed directly
|
27
|
if(!defined('WB_URL')) {
|
28
|
header('Location: ../index.php');
|
29
|
exit(0);
|
30
|
}
|
31
|
|
32
|
// Get comments page template details from db
|
33
|
$query_settings = $database->query("SELECT comments_page,use_captcha FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '".SECTION_ID."'");
|
34
|
if($query_settings->numRows() == 0) {
|
35
|
header("Location: ".WB_URL.PAGES_DIRECTORY."");
|
36
|
exit(0);
|
37
|
} else {
|
38
|
$settings = $query_settings->fetchRow();
|
39
|
// Print comments page
|
40
|
echo str_replace('[POST_TITLE]', POST_TITLE, ($settings['comments_page']));
|
41
|
?>
|
42
|
<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">
|
43
|
<?php echo $TEXT['TITLE']; ?>:
|
44
|
<br />
|
45
|
<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']); } ?> />
|
46
|
<br /><br />
|
47
|
<?php echo $TEXT['COMMENT']; ?>:
|
48
|
<br />
|
49
|
<textarea name="comment" style="width: 90%; height: 150px;"><?php if(isset($_SESSION['comment_body'])) { echo $_SESSION['comment_body']; unset($_SESSION['comment_body']); } ?></textarea>
|
50
|
<br /><br />
|
51
|
<?php
|
52
|
if(isset($_SESSION['captcha_error'])) {
|
53
|
echo '<font color="#FF0000">'.$_SESSION['captcha_error'].'</font><br />';
|
54
|
unset($_SESSION['captcha_error']);
|
55
|
}
|
56
|
// Captcha
|
57
|
if($settings['use_captcha']) {
|
58
|
$_SESSION['captcha'] = '';
|
59
|
for($i = 0; $i < 5; $i++) {
|
60
|
$_SESSION['captcha'] .= rand(0,9);
|
61
|
}
|
62
|
?>
|
63
|
<table cellpadding="2" cellspacing="0" border="0">
|
64
|
<tr>
|
65
|
<td><?php echo $TEXT['VERIFICATION']; ?>:</td>
|
66
|
<td><img src="<?php echo WB_URL; ?>/include/captcha.php?t=<?php echo time(); ?>" alt="Captcha" /></td>
|
67
|
<td><input type="text" name="captcha" maxlength="5" /></td>
|
68
|
</tr></table>
|
69
|
<br />
|
70
|
<?php
|
71
|
}
|
72
|
?>
|
73
|
<input type="submit" name="submit" value="<?php echo $TEXT['ADD']; ?> <?php echo $TEXT['COMMENT']; ?>" />
|
74
|
</form>
|
75
|
<?php
|
76
|
}
|
77
|
|
78
|
?>
|