]> git.mxchange.org Git - friendica.git/commitdiff
fix typo and syntax error
authorSimon L'nu <simon.lnu@gmail.com>
Mon, 25 Jun 2012 22:49:36 +0000 (18:49 -0400)
committerSimon L'nu <simon.lnu@gmail.com>
Mon, 25 Jun 2012 22:49:36 +0000 (18:49 -0400)
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
include/bbcode.php

index 38d1e658f937116bc13fe46490372a34aadff52e..36d480a178cfed14c8a7cb41920add2c84e246ed 100644 (file)
@@ -162,7 +162,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
 
        // handle nested lists
        $endlessloop = 0;
-       while ((strpos($Text, "[/list]") !== false) && (strpos($Text, "[list") !== false)
+       while ((strpos($Text, "[/list]") !== false) && (strpos($Text, "[list]") !== false) &&
               (strpos($Text, "[/ol]") !== false) && (strpos($Text, "[ol]") !== false) && 
               (strpos($Text, "[/ul]") !== false) && (strpos($Text, "[ul]") !== false) && (++$endlessloop < 20)) {
                $Text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>' ,$Text);