summaryrefslogtreecommitdiff
path: root/inc/load.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2010-02-01 16:10:25 +0100
committerAndreas Gohr <andi@splitbrain.org>2010-02-01 16:10:25 +0100
commitc2a6d81662045023bdf1617b6b49f71c274d55ca (patch)
tree3449fc7e242890cbc1c18293e6efbca7a7403df9 /inc/load.php
parent0af14a6e25ba35e88d96762bc73325838868e3fe (diff)
downloadrpg-c2a6d81662045023bdf1617b6b49f71c274d55ca.tar.gz
rpg-c2a6d81662045023bdf1617b6b49f71c274d55ca.tar.bz2
plugin related autoloading
This patch moved the place where DOKU_PLUGIN is defined. It no longer can be set from a normal config (only via preload)
Diffstat (limited to 'inc/load.php')
-rw-r--r--inc/load.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/inc/load.php b/inc/load.php
index 792f05e27..e06a2c63d 100644
--- a/inc/load.php
+++ b/inc/load.php
@@ -76,6 +76,11 @@ function load_autoload($name){
'GeSHi' => DOKU_INC.'inc/geshi.php',
'TarLib' => DOKU_INC.'inc/TarLib.class.php',
'ZibLib' => DOKU_INC.'inc/ZipLib.class.php',
+
+ 'DokuWiki_Action_Plugin' => DOKU_PLUGIN.'action.php',
+ 'DokuWiki_Admin_Plugin' => DOKU_PLUGIN.'admin.php',
+ 'DokuWiki_Syntax_Plugin' => DOKU_PLUGIN.'syntax.php',
+
);
if(isset($classes[$name])){