diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-03-12 14:09:57 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-03-12 14:09:57 +0100 |
commit | 05ed2c25ea0dc45eef2af0f9f4176c939af41100 (patch) | |
tree | 08a99b2cb2f484fca9b53e602deb409711a11ac2 /inc | |
parent | 24b3cb1ac0784ffa2acabf021fdd06c6d49cc7b1 (diff) | |
download | rpg-05ed2c25ea0dc45eef2af0f9f4176c939af41100.tar.gz rpg-05ed2c25ea0dc45eef2af0f9f4176c939af41100.tar.bz2 |
some more load fixes
Diffstat (limited to 'inc')
-rw-r--r-- | inc/load.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/inc/load.php b/inc/load.php index e06a2c63d..dad03875a 100644 --- a/inc/load.php +++ b/inc/load.php @@ -9,12 +9,8 @@ spl_autoload_register('load_autoload'); // require all the common libraries -// for a e few of these order does matter -require_once(DOKU_INC.'inc/IXR_Library.php'); -require_once(DOKU_INC.'inc/adLDAP.php'); +// for a few of these order does matter require_once(DOKU_INC.'inc/blowfish.php'); -require_once(DOKU_INC.'inc/feedcreator.class.php'); -require_once(DOKU_INC.'inc/geshi.php'); require_once(DOKU_INC.'inc/actions.php'); require_once(DOKU_INC.'inc/changelog.php'); require_once(DOKU_INC.'inc/common.php'); @@ -49,7 +45,7 @@ require_once(DOKU_INC.'inc/auth.php'); * require()s their associated php files when an object is instantiated. * * @author Andreas Gohr <andi@splitbrain.org> - * @todo add generic loading of plugins here + * @todo add generic loading of plugins and other generically named classes */ function load_autoload($name){ static $classes = null; @@ -76,6 +72,8 @@ function load_autoload($name){ 'GeSHi' => DOKU_INC.'inc/geshi.php', 'TarLib' => DOKU_INC.'inc/TarLib.class.php', 'ZibLib' => DOKU_INC.'inc/ZipLib.class.php', + 'DokuWikiFeedCreator' => DOKU_INC.'inc/feedcreator.class.php', + 'Doku_Parser_Mode' => DOKU_INC.'inc/parser/parser.php', 'DokuWiki_Action_Plugin' => DOKU_PLUGIN.'action.php', 'DokuWiki_Admin_Plugin' => DOKU_PLUGIN.'admin.php', |