Type that eliminated all content, fixed.

git-svn-id: http://svn.automattic.com/wordpress/trunk@342 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2003-08-24 21:36:09 +00:00
parent 753de9e52e
commit e3a1196827
1 changed files with 1 additions and 1 deletions

View File

@ -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;