diff options
author | hArpanet <github@harpanet.com> | 2013-09-20 17:34:29 +0100 |
---|---|---|
committer | hArpanet <github@harpanet.com> | 2013-09-20 17:34:29 +0100 |
commit | 0b70fdc31cd6798a034541f482504328205715e7 (patch) | |
tree | 134c720d444bb7ae3939740268d916f4e08dac19 /inc | |
parent | 9c438d6c2f958e38aa324a04ed37b9a072872038 (diff) | |
download | rpg-0b70fdc31cd6798a034541f482504328205715e7.tar.gz rpg-0b70fdc31cd6798a034541f482504328205715e7.tar.bz2 |
Bugfix: DOKU_CONF path
Remove extraneous slash
Diffstat (limited to 'inc')
-rw-r--r-- | inc/plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/plugin.php b/inc/plugin.php index 422b82534..dccd37bd9 100644 --- a/inc/plugin.php +++ b/inc/plugin.php @@ -97,7 +97,7 @@ class DokuWiki_Plugin { function localFN($id) { global $conf; $plugin = $this->getPluginName(); - $file = DOKU_CONF.'/plugin_lang/'.$plugin.'/'.$conf['lang'].'/'.$id.'.txt'; + $file = DOKU_CONF.'plugin_lang/'.$plugin.'/'.$conf['lang'].'/'.$id.'.txt'; if (!@file_exists($file)){ $file = DOKU_PLUGIN.$plugin.'/lang/'.$conf['lang'].'/'.$id.'.txt'; if(!@file_exists($file)){ |