diff options
author | andi <andi@splitbrain.org> | 2005-05-23 19:48:04 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-05-23 19:48:04 +0200 |
commit | 16521111dd62031afbcbdadffe0f8f6929fb6056 (patch) | |
tree | c863b141d593d4313f3ef126e62ad8b60b44cf56 /inc | |
parent | 26b8b699316de93ab2e795a587e655db27aae651 (diff) | |
download | rpg-16521111dd62031afbcbdadffe0f8f6929fb6056.tar.gz rpg-16521111dd62031afbcbdadffe0f8f6929fb6056.tar.bz2 |
moved loading of languages to init.php - fixes #346
darcs-hash:20050523174804-9977f-a49e154bb89357d39eb8ddb3273650759cd74114.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/init.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/init.php b/inc/init.php index af1d1eb9c..363518b65 100644 --- a/inc/init.php +++ b/inc/init.php @@ -21,6 +21,10 @@ global $lang; $lang = array(); + //load the language files + require_once(DOKU_INC.'lang/en/lang.php'); + require_once(DOKU_INC.'lang/'.$conf['lang'].'/lang.php'); + // define baseURL if(!defined('DOKU_BASE')) define('DOKU_BASE',getBaseURL()); if(!defined('DOKU_URL')) define('DOKU_URL',getBaseURL(true)); |