0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-page.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-page.php,v 1.9.2.3 2005/08/04 22:15:59 franck 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/htmlpages/htmlpageslib.php'); include_once ('lib/stats/statslib.php'); if ($feature_html_pages != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_html_pages"); $smarty->display("error.tpl"); die; } if ($tiki_p_view_html_pages != 'y') { $smarty->assign('msg', tra("You do not have permission to use this feature")); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["pageName"])) { $smarty->assign('msg', tra("No page indicated")); $smarty->display("error.tpl"); die; } $page_data = $htmlpageslib->get_html_page($_REQUEST["pageName"]); $smarty->assign('type', $page_data["type"]); $smarty->assign('refresh', $page_data["refresh"]); $smarty->assign('pageName', $_REQUEST["pageName"]); $parsed = $htmlpageslib->parse_html_page($_REQUEST["pageName"], $page_data["content"]); $smarty->assign_by_ref('parsed', $parsed); $section = 'html_pages'; include_once ('tiki-section_options.php'); if ($feature_theme_control == 'y') { $cat_type = 'html page'; $cat_objid = $_REQUEST['pageName']; include ('tiki-tc.php'); } ask_ticket('html-page'); //add a hit $statslib->stats_hit($_REQUEST['pageName'],"html_pages"); // Display the template $smarty->assign('mid', 'tiki-page.tpl'); $smarty->display("tiki.tpl"); ?>