Changeset 4283 for trunk/wp-includes/formatting.php
- Timestamp:
- 10/04/2006 02:21:27 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r4184 r4283 614 614 $content = $textarr[$i]; 615 615 if ((strlen($content) > 0) && ('<' != $content{0})) { // If it's not a tag 616 $content = str_replace($wp_smiliessearch, $wp_smiliesreplace, $content);616 $content = preg_replace($wp_smiliessearch, $wp_smiliesreplace, $content); 617 617 } 618 618 $output .= $content;
Note: See TracChangeset
for help on using the changeset viewer.