summaryrefslogtreecommitdiffstats
path: root/code/handlers.inc.php
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-04-11 20:05:04 +0200
committerneoraider <devnull@localhost>2006-04-11 20:05:04 +0200
commit2fe04a4707412ff2f4f8df5f5524bb1b2dcbb3d7 (patch)
tree6947238ea3e304acec01f24dff358d67e86cc1e2 /code/handlers.inc.php
parente267e31bd045ff4a6bfa1489b0ad0eb5fcc7b31d (diff)
downloadneon-2fe04a4707412ff2f4f8df5f5524bb1b2dcbb3d7.tar
neon-2fe04a4707412ff2f4f8df5f5524bb1b2dcbb3d7.zip
XML-Parser und Modulverwaltung implementiert.
Diffstat (limited to 'code/handlers.inc.php')
-rw-r--r--code/handlers.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/code/handlers.inc.php b/code/handlers.inc.php
index 5410de0..a167ba8 100644
--- a/code/handlers.inc.php
+++ b/code/handlers.inc.php
@@ -1,4 +1,6 @@
<?PHP
+ require_once('code/modules.inc.php');
+
$dir = opendir('handlers');
while($file = readdir($dir))
@@ -6,4 +8,7 @@
include('handlers/' . $file);
closedir($dir);
+
+ foreach($GLOBALS['modules']->handlers as $file)
+ include($file);
?>