| 1 | <?php
 | 
  
    | 2 | 
 | 
  
    | 3 | // $Id: comment.php 239 2005-11-22 11:50:41Z stefan $
 | 
  
    | 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 | // Include config file
 | 
  
    | 27 | require('../../config.php');
 | 
  
    | 28 | 
 | 
  
    | 29 | // Check if there is a post id
 | 
  
    | 30 | if(!isset($_GET['id']) OR !is_numeric($_GET['id'])) {
 | 
  
    | 31 | 	if(!isset($_POST['post_id']) OR !is_numeric($_POST['post_id'])) {
 | 
  
    | 32 | 		header('Location: '.WB_URL.'/pages/');
 | 
  
    | 33 | 	} else {
 | 
  
    | 34 | 		$post_id = $_POST['post_id'];
 | 
  
    | 35 | 	}
 | 
  
    | 36 | } else {
 | 
  
    | 37 | 	$post_id = $_GET['id'];
 | 
  
    | 38 | }
 | 
  
    | 39 | 
 | 
  
    | 40 | // Include database class
 | 
  
    | 41 | require_once(WB_PATH.'/framework/class.database.php');
 | 
  
    | 42 | $database = new database();
 | 
  
    | 43 | 
 | 
  
    | 44 | // Query post for page id
 | 
  
    | 45 | $query_post = $database->query("SELECT post_id,title,section_id,page_id FROM ".TABLE_PREFIX."mod_news_posts WHERE post_id = '$post_id'");
 | 
  
    | 46 | if($query_post->numRows() == 0) {
 | 
  
    | 47 | 	header('Location: '.WB_URL.'/pages/');
 | 
  
    | 48 | } else {
 | 
  
    | 49 | 	$fetch_post = $query_post->fetchRow();
 | 
  
    | 50 | 	$page_id = $fetch_post['page_id'];
 | 
  
    | 51 | 	$section_id = $fetch_post['section_id'];
 | 
  
    | 52 | 	$post_id = $fetch_post['post_id'];
 | 
  
    | 53 | 	$post_title = $fetch_post['title'];
 | 
  
    | 54 | 	define('SECTION_ID', $section_id);
 | 
  
    | 55 | 	define('POST_ID', $post_id);
 | 
  
    | 56 | 	define('POST_TITLE', $post_title);
 | 
  
    | 57 | 	// Get page details
 | 
  
    | 58 | 	$query_page = $database->query("SELECT parent,page_title,menu_title,keywords,description,visibility FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'");
 | 
  
    | 59 | 	if($query_page->numRows() == 0) {
 | 
  
    | 60 | 		header('Location: '.WB_URL.'/pages/');
 | 
  
    | 61 | 	} else {
 | 
  
    | 62 | 		$page = $query_page->fetchRow();
 | 
  
    | 63 | 		// Required page details
 | 
  
    | 64 | 		define('PAGE_CONTENT', WB_PATH.'/modules/news/comment_page.php');
 | 
  
    | 65 | 		// Include index (wrapper) file
 | 
  
    | 66 | 		require(WB_PATH.'/index.php');
 | 
  
    | 67 | 	}
 | 
  
    | 68 | }
 | 
  
    | 69 | 
 | 
  
    | 70 | 
 | 
  
    | 71 | ?>
 |