diff options
author | andi <andi@splitbrain.org> | 2005-05-06 16:57:43 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-05-06 16:57:43 +0200 |
commit | 4724a5775a55527d05b2210f61b3d6318a2e07c0 (patch) | |
tree | a9a3b6336d29dadf7eb6b1e6681ed9e99bb74ff6 | |
parent | cd9ab85b218ffdc708245d9b7cf498276ead5c31 (diff) | |
download | rpg-4724a5775a55527d05b2210f61b3d6318a2e07c0.tar.gz rpg-4724a5775a55527d05b2210f61b3d6318a2e07c0.tar.bz2 |
small fixes
darcs-hash:20050506145743-9977f-16cbd3c620a635fc49f965a7dd43baec38bf7200.gz
-rw-r--r-- | data/wiki/dokuwiki.txt | 2 | ||||
-rw-r--r-- | inc/init.php | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/data/wiki/dokuwiki.txt b/data/wiki/dokuwiki.txt index 03079b006..658a08007 100644 --- a/data/wiki/dokuwiki.txt +++ b/data/wiki/dokuwiki.txt @@ -24,7 +24,9 @@ All documentation and additional information besides the [[syntax|syntax descrip * [[doku>wiki:compare|Wiki Engine Comparison]] * [[doku>wiki:experiences|Experiences]] * [[doku>wiki:tips|Tips and Tricks]] + * [[http://bugs.splitbrain.org/index.php?project=1|Bugs and feature wishes]] + * [[doku>wiki:mailinglist|Mailing List]] * [[doku>wiki:todo|ToDo List]] * [[doku>wiki:development|Development Ressources]] diff --git a/inc/init.php b/inc/init.php index 58dc5c67d..346a41baf 100644 --- a/inc/init.php +++ b/inc/init.php @@ -9,6 +9,9 @@ // set up error reporting to sane values error_reporting(E_ALL ^ E_NOTICE); + //prepare config array() + $conf = array(); + // load the config file(s) require_once(DOKU_INC.'conf/dokuwiki.php'); @include_once(DOKU_INC.'conf/local.php'); |