| 1 | 
        
            4
         | 
        
            ryan
         | 
        <?php
  | 
      
      
        | 2 | 
        
         | 
        
         | 
        
  | 
      
      
        | 3 | 
        
            36
         | 
        
            stefan
         | 
        // $Id$
  | 
      
      
        | 4 | 
        
            299
         | 
        
            stefan
         | 
        
  | 
      
      
        | 5 | 
        
            4
         | 
        
            ryan
         | 
        /*
  | 
      
      
        | 6 | 
        
         | 
        
         | 
        
  | 
      
      
        | 7 | 
        
         | 
        
         | 
         Website Baker Project <http://www.websitebaker.org/>
  | 
      
      
        | 8 | 
        
            310
         | 
        
            ryan
         | 
         Copyright (C) 2004-2006, Ryan Djurovich
  | 
      
      
        | 9 | 
        
            4
         | 
        
            ryan
         | 
        
  | 
      
      
        | 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 | 
        
            299
         | 
        
            stefan
         | 
        */
  | 
      
      
        | 25 | 
        
            4
         | 
        
            ryan
         | 
        
  | 
      
      
        | 26 | 
        
         | 
        
         | 
        // Make sure page cannot be accessed directly
  | 
      
      
        | 27 | 
        
            286
         | 
        
            stefan
         | 
        if(!defined('WB_URL')) {
 | 
      
      
        | 28 | 
        
         | 
        
         | 
        	header('Location: ../index.php');
 | 
      
      
        | 29 | 
        
         | 
        
         | 
        	exit(0);
  | 
      
      
        | 30 | 
        
         | 
        
         | 
        }
  | 
      
      
        | 31 | 
        
            4
         | 
        
            ryan
         | 
        
  | 
      
      
        | 32 | 
        
         | 
        
         | 
        // Get comments page template details from db
  | 
      
      
        | 33 | 
        
            250
         | 
        
            ryan
         | 
        $query_settings = $database->query("SELECT comments_page,use_captcha FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '".SECTION_ID."'");
 | 
      
      
        | 34 | 
        
            4
         | 
        
            ryan
         | 
        if($query_settings->numRows() == 0) {
 | 
      
      
        | 35 | 
        
         | 
        
         | 
        	header('Location: '.WB_URL.'/pages/');
 | 
      
      
        | 36 | 
        
            286
         | 
        
            stefan
         | 
        	exit(0);
  | 
      
      
        | 37 | 
        
            4
         | 
        
            ryan
         | 
        } else {
 | 
      
      
        | 38 | 
        
         | 
        
         | 
        	$settings = $query_settings->fetchRow();
  | 
      
      
        | 39 | 
        
         | 
        
         | 
        	// Print comments page
  | 
      
      
        | 40 | 
        
            250
         | 
        
            ryan
         | 
        	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 | 
        
            299
         | 
        
            stefan
         | 
        	<td><img src="<?php echo WB_URL; ?>/include/captcha.php?t=<?php echo time(); ?>" alt="Captcha" /></td>
  | 
      
      
        | 67 | 
        
            250
         | 
        
            ryan
         | 
        	<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 | 
        
            4
         | 
        
            ryan
         | 
        }
  | 
      
      
        | 77 | 
        
         | 
        
         | 
        
  | 
      
      
        | 78 | 
        
         | 
        
         | 
        ?>
  |