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/pageutils.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/pageutils.php')
-rw-r--r-- | inc/pageutils.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php index 731c3415c..884df9e96 100644 --- a/inc/pageutils.php +++ b/inc/pageutils.php @@ -153,10 +153,10 @@ function mediaFN($id){ */ function localeFN($id){ global $conf; - $file = './lang/'.$conf['lang'].'/'.$id.'.txt'; + $file = DOKU_INC.'inc/lang/'.$conf['lang'].'/'.$id.'.txt'; if(!@file_exists($file)){ //fall back to english - $file = './lang/en/'.$id.'.txt'; + $file = DOKU_INC.'inc/lang/en/'.$id.'.txt'; } return $file; } |