From e267e31bd045ff4a6bfa1489b0ad0eb5fcc7b31d Mon Sep 17 00:00:00 2001 From: neoraider Date: Mon, 10 Apr 2006 23:32:02 +0000 Subject: /code/links.inc.php /code/nav.inc.php: Links::ParseNavLink nach Nav::ParseLink verschoben. /code/pages.inc.php: Bug in HasAccess() gefixt. /handlers/default.inc.php /handlers/phpexec.inc.php: Globale Variablen wurden nicht in $GLOBALS gesetzt. --- handlers/phpexec.inc.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'handlers/phpexec.inc.php') diff --git a/handlers/phpexec.inc.php b/handlers/phpexec.inc.php index 76dccae..5b8c751 100644 --- a/handlers/phpexec.inc.php +++ b/handlers/phpexec.inc.php @@ -4,10 +4,7 @@ class phpexec_handler { function Get($data) { - if($data['title']) - $title = strtr($data['title'], array('<' => '<', '>' => '>', '&' => '&', '"' => '"')); - else - $title = strtr($data['_page'], array(':' => ' - ')); + $title = strtr($data['_page'], array(':' => ' - ')); ob_start(); @@ -20,5 +17,5 @@ } } - $handlers['phpexec'] = new phpexec_handler; + $GLOBALS['handlers']['phpexec'] = new phpexec_handler; ?> -- cgit v1.2.3