diff options
author | Matt Perry <matt@mattperry.com> | 2013-09-10 22:17:43 -0700 |
---|---|---|
committer | Matt Perry <matt@mattperry.com> | 2013-09-10 22:17:43 -0700 |
commit | 2f7a0e94cadfbc1ece3bd1d3ff23483b845cd420 (patch) | |
tree | 2cf3cae2992572780613d7947c6e6b32ad7e84cd /lib/plugins/syntax.php | |
parent | 010b7000dc28ca11be8f8f679319fe846ca2723f (diff) | |
download | dokuwiki-2f7a0e94cadfbc1ece3bd1d3ff23483b845cd420.tar.gz dokuwiki-2f7a0e94cadfbc1ece3bd1d3ff23483b845cd420.zip |
Fix CodeSniffer whitespace violoations
Removed extraneous whitespace to eliminate errors reported by the
Squiz.WhiteSpace.SuperfluousWhitespace sniff.
Diffstat (limited to 'lib/plugins/syntax.php')
-rw-r--r-- | lib/plugins/syntax.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/syntax.php b/lib/plugins/syntax.php index 6aa403b61..8df5abb08 100644 --- a/lib/plugins/syntax.php +++ b/lib/plugins/syntax.php @@ -216,12 +216,12 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode { global $conf; // definitely don't invoke "global $lang" $path = DOKU_PLUGIN.$this->getPluginName().'/lang/'; - + $lang = array(); // don't include once, in case several plugin components require the same language file @include($path.'en/lang.php'); if ($conf['lang'] != 'en') @include($path.$conf['lang'].'/lang.php'); - + $this->lang = $lang; $this->localised = true; } |