From 8a83ac5a4cbe4da38952b0af750f5fb2b3557350 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sun, 24 Aug 2003 21:36:09 +0000 Subject: [PATCH] Type that eliminated all content, fixed. git-svn-id: https://develop.svn.wordpress.org/trunk@342 602fd350-edb4-49c9-b593-d223f7449a82 --- b2-include/b2functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2-include/b2functions.php b/b2-include/b2functions.php index c9d9894813..451f5deed7 100644 --- a/b2-include/b2functions.php +++ b/b2-include/b2functions.php @@ -275,7 +275,7 @@ function convert_smilies($text) { $stop = count($textarr);// loop stuff for ($i = 0; $i < $stop; $i++) { $content = $textarr[$i]; - if ('<' != $curl{0}) { // If it's not a tag + if ('<' != $content{0}) { // If it's not a tag $content = str_replace($b2_smiliessearch, $b2_smiliesreplace, $content); } $output .= $content;