summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2013-10-06 12:15:05 -0700
committerChristopher Smith <chris@jalakai.co.uk>2013-10-06 12:15:05 -0700
commit01d33c0ca3e978051f47ca42f8e1ce5836b8bf80 (patch)
tree97080adc4e688532c7bf43dd9ae28e8ce7b31f6d /inc
parent11246bf7bfecfacb4777bba4b68bb7c8dcc86b75 (diff)
parent8819fbf54acaf5ba3ac9f899c893a56a14144c99 (diff)
downloadrpg-01d33c0ca3e978051f47ca42f8e1ce5836b8bf80.tar.gz
rpg-01d33c0ca3e978051f47ca42f8e1ce5836b8bf80.tar.bz2
Merge pull request #347 from hArpanet/patch-1
Bugfix: DOKU_CONF path in pageutils.php
Diffstat (limited to 'inc')
-rw-r--r--inc/pageutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php
index 5043d2263..bf79daa7d 100644
--- a/inc/pageutils.php
+++ b/inc/pageutils.php
@@ -366,7 +366,7 @@ function mediaFN($id, $rev=''){
*/
function localeFN($id,$ext='txt'){
global $conf;
- $file = DOKU_CONF.'/lang/'.$conf['lang'].'/'.$id.'.'.$ext;
+ $file = DOKU_CONF.'lang/'.$conf['lang'].'/'.$id.'.'.$ext;
if(!@file_exists($file)){
$file = DOKU_INC.'inc/lang/'.$conf['lang'].'/'.$id.'.'.$ext;
if(!@file_exists($file)){