summaryrefslogtreecommitdiffstats
path: root/handlers/phpexec.inc.php
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-04-11 01:32:02 +0200
committerneoraider <devnull@localhost>2006-04-11 01:32:02 +0200
commite267e31bd045ff4a6bfa1489b0ad0eb5fcc7b31d (patch)
tree12258874b7507fd9784184c08e2fbd89e945edd4 /handlers/phpexec.inc.php
parent9697f5a0d665e7171de958182cbe59c1dcfe2c87 (diff)
downloadneon-e267e31bd045ff4a6bfa1489b0ad0eb5fcc7b31d.tar
neon-e267e31bd045ff4a6bfa1489b0ad0eb5fcc7b31d.zip
/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.
Diffstat (limited to 'handlers/phpexec.inc.php')
-rw-r--r--handlers/phpexec.inc.php7
1 files changed, 2 insertions, 5 deletions
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('<' => '&lt;', '>' => '&gt;', '&' => '&amp;', '"' => '&quot;'));
- 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;
?>