From e3a11968271a1b51f205af6d88fa1da18149dae5 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Sun, 24 Aug 2003 21:36:09 +0000 Subject: [PATCH] Type that eliminated all content, fixed. git-svn-id: http://svn.automattic.com/wordpress/trunk@342 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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;