diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-05-19 17:26:01 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-05-19 17:26:01 +0200 |
commit | 358c634153bd5fc5fe6a80a2c129e70adb107093 (patch) | |
tree | bf7355d9e7049a692e855731fb2c70127cab864f /phpBB | |
parent | e8602d4203132502cba0e5bf4bc17a8e0e4281ed (diff) | |
download | forums-358c634153bd5fc5fe6a80a2c129e70adb107093.tar forums-358c634153bd5fc5fe6a80a2c129e70adb107093.tar.gz forums-358c634153bd5fc5fe6a80a2c129e70adb107093.tar.bz2 forums-358c634153bd5fc5fe6a80a2c129e70adb107093.tar.xz forums-358c634153bd5fc5fe6a80a2c129e70adb107093.zip |
[ticket/13832] Remove unused global from bbcode_init()
PHPBB3-13832
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/message_parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php index d40c71c2a9..208690c146 100644 --- a/phpBB/includes/message_parser.php +++ b/phpBB/includes/message_parser.php @@ -126,7 +126,7 @@ class bbcode_firstpass extends bbcode */ function bbcode_init($allow_custom_bbcode = true) { - global $phpbb_dispatcher, $bbcode_class; + global $phpbb_dispatcher; static $rowset; |