summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhArpanet <github@harpanet.com>2013-09-20 17:41:55 +0100
committerhArpanet <github@harpanet.com>2013-09-20 17:41:55 +0100
commit8819fbf54acaf5ba3ac9f899c893a56a14144c99 (patch)
tree09ed809054da0aa2050df11f559875af56e55609
parentbfd197d22f32f74940afadf1e308828773dbde18 (diff)
downloadrpg-8819fbf54acaf5ba3ac9f899c893a56a14144c99.tar.gz
rpg-8819fbf54acaf5ba3ac9f899c893a56a14144c99.tar.bz2
Bugfix: DOKU_CONF path in pageutils.php
Remove extraneous slash. This extra slash was preventing the file being displayed by DokuWiki. (apologies for the two pulls instead of one)
-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)){