diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-08-30 23:04:59 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-08-30 23:04:59 +0200 |
commit | bc3e97becac1d4920baa2ff042cdd886e1080056 (patch) | |
tree | 0c1c702b85578e64bd4d77f30b1eee805a19ebcf | |
parent | 71726d7801bdcbf41dfdc79d244f09a0988529c0 (diff) | |
download | rpg-bc3e97becac1d4920baa2ff042cdd886e1080056.tar.gz rpg-bc3e97becac1d4920baa2ff042cdd886e1080056.tar.bz2 |
conflict resolution for memory cache init
darcs-hash:20060830210459-7ad00-8f7a2ae826d5f893d3e48f41c8ae868987ec0dd2.gz
-rw-r--r-- | inc/init.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/init.php b/inc/init.php index bfa22e001..69dd4766b 100644 --- a/inc/init.php +++ b/inc/init.php @@ -24,8 +24,9 @@ else { error_reporting(DOKU_E_LEVEL); } // init memory caches - $cache_wikifn = array(); - $cache_cleanid = array(); + global $cache_revinfo; $cache_revinfo = array(); + global $cache_wikifn; $cache_wikifn = array(); + global $cache_wikifn; $cache_cleanid = array(); //prepare config array() global $conf; |