From 25b711d9be5f5e35452e3d05bea158ce2b10653b Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Mon, 8 Sep 2008 08:19:41 +0000 Subject: [PATCH] working around notice --- fp-plugins/bbcode/inc/stringparser_bbcode.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fp-plugins/bbcode/inc/stringparser_bbcode.class.php b/fp-plugins/bbcode/inc/stringparser_bbcode.class.php index 70c7e50..549ab61 100755 --- a/fp-plugins/bbcode/inc/stringparser_bbcode.class.php +++ b/fp-plugins/bbcode/inc/stringparser_bbcode.class.php @@ -950,7 +950,8 @@ class StringParser_BBCode extends StringParser { return $this->_stack[$i]; } } - return false; + $false = false; // workaround for notice + return $false; } /** @@ -1886,4 +1887,4 @@ class StringParser_BBCode_Node_Element extends StringParser_Node { } } -?> \ No newline at end of file +?>