diff options
author | Michael Hamann <michael@content-space.de> | 2012-07-28 11:09:27 +0200 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2012-07-28 11:34:47 +0200 |
commit | 3e8e3ae62e43569a3dbe679e04d07744e045e472 (patch) | |
tree | 44a91682c28daed19184fd8ac9f446c7e7454c6a /lib/plugins | |
parent | bd28297e917143628c2b78c5635c881864ce9d23 (diff) | |
download | rpg-3e8e3ae62e43569a3dbe679e04d07744e045e472.tar.gz rpg-3e8e3ae62e43569a3dbe679e04d07744e045e472.tar.bz2 |
Fix inconsistent return values in the indexer and in getInfo()
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/syntax.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/plugins/syntax.php b/lib/plugins/syntax.php index d4394eb6f..a68946a99 100644 --- a/lib/plugins/syntax.php +++ b/lib/plugins/syntax.php @@ -37,6 +37,7 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode { $info = DOKU_PLUGIN.'/'.$parts[2].'/plugin.info.txt'; if(@file_exists($info)) return confToHash($info); trigger_error('getInfo() not implemented in '.get_class($this).' and '.$info.' not found', E_USER_WARNING); + return array(); } /** |