diff options
author | andi <andi@splitbrain.org> | 2005-06-05 13:07:14 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-06-05 13:07:14 +0200 |
commit | bc3b6aec0f5bdef988488010807a94bee0808426 (patch) | |
tree | 8760115219a7b7945b13d21824c8acbd90e152c0 /inc/init.php | |
parent | e4cdc61b9e20e450c94b10989bda3d1dec1c995b (diff) | |
download | rpg-bc3b6aec0f5bdef988488010807a94bee0808426.tar.gz rpg-bc3b6aec0f5bdef988488010807a94bee0808426.tar.bz2 |
moved lang directory into inc dir
darcs-hash:20050605110714-9977f-e974278576a74db3ffb46647411dd68f96f517ca.gz
Diffstat (limited to 'inc/init.php')
-rw-r--r-- | inc/init.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/init.php b/inc/init.php index dd5614d42..67cac8783 100644 --- a/inc/init.php +++ b/inc/init.php @@ -22,8 +22,8 @@ $lang = array(); //load the language files - require_once(DOKU_INC.'lang/en/lang.php'); - require_once(DOKU_INC.'lang/'.$conf['lang'].'/lang.php'); + require_once(DOKU_INC.'inc/lang/en/lang.php'); + require_once(DOKU_INC.'inc/lang/'.$conf['lang'].'/lang.php'); // define baseURL if(!defined('DOKU_BASE')) define('DOKU_BASE',getBaseURL()); |