Project

General

Profile

1
<?php
2

    
3
// $Id: comment_page.php 250 2005-11-27 09:44:15Z ryan $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, 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')) { header('Location: ../index.php'); }
28
	
29
// Get comments page template details from db
30
$query_settings = $database->query("SELECT comments_page,use_captcha FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '".SECTION_ID."'");
31
if($query_settings->numRows() == 0) {
32
	header('Location: '.WB_URL.'/pages/');
33
} else {
34
	$settings = $query_settings->fetchRow();
35
	// Print 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.'&section_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
72
}
73

    
74
?>
(5-5/27)