0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-likepages.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-likepages.php,v 1.9.2.3 2006/09/03 16:32:32 ohertel Exp $ // Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // Initialization require_once ('tiki-setup.php'); include_once ('lib/wiki/wikilib.php'); if ($feature_wiki != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_wiki"); $smarty->display("error.tpl"); die; } if ($feature_likePages != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_likePages"); $smarty->display("error.tpl"); die; } // Get the page from the request var or default it to HomePage if (!isset($_REQUEST["page"])) { $smarty->assign('msg', tra("No page indicated")); $smarty->display("error.tpl"); die; } else { $page = $_REQUEST["page"]; $smarty->assign_by_ref('page', $_REQUEST["page"]); } include_once ("tiki-pagesetup.php"); // Now check permissions to access this page if ($tiki_p_view != 'y') { $smarty->assign('msg', tra("Permission denied you cannot view pages like this page")); $smarty->display("error.tpl"); die; } $likepages = $wikilib->get_like_pages($page); // If the page doesn't exist then display an error if (!$tikilib->page_exists($page)) { if(count($likepages) == 1 ) { header ("Status: 402 Found"); /* PHP3 */ header ("HTTP/1.0 402 Found"); /* PHP4 */ header("Location: tiki-index.php?page=$likepages[0]"); die; } $smarty->assign('page_exists', 'n'); if( count($likepages) <1 ) { header ("Status: 404 Not Found"); /* PHP3 */ header ("HTTP/1.0 404 Not Found"); /* PHP4 */ $smarty->assign('headtitle',tra("Page cannot be found")); $smarty->assign('errortitle',tra("Page cannot be found")." (404)"); $smarty->assign('errortype', '404'); $smarty->display("error.tpl"); die; } } $smarty->assign_by_ref('likepages', $likepages); ask_ticket('likepages'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-likepages.tpl'); $smarty->assign('show_page_bar', 'y'); $smarty->display("tiki.tpl"); ?>