diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-10-06 12:13:24 -0700 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-10-06 12:13:24 -0700 |
commit | 11246bf7bfecfacb4777bba4b68bb7c8dcc86b75 (patch) | |
tree | b10aa2cce79def5ae7973deacb1c75ff9438b703 /inc/plugin.php | |
parent | 7ac75dc1923bc76b6f34831be049a0f02aec9e1f (diff) | |
parent | 0b70fdc31cd6798a034541f482504328205715e7 (diff) | |
download | rpg-11246bf7bfecfacb4777bba4b68bb7c8dcc86b75.tar.gz rpg-11246bf7bfecfacb4777bba4b68bb7c8dcc86b75.tar.bz2 |
Merge pull request #346 from hArpanet/patch-2
Bugfix: DOKU_CONF path in plugin.php
Diffstat (limited to 'inc/plugin.php')
-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)){ |