Type that eliminated all content, fixed.

git-svn-id: https://develop.svn.wordpress.org/trunk@342 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-08-24 21:36:09 +00:00
parent 5796aeb9b0
commit 8a83ac5a4c
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;