Changeset 4360 for trunk/wp-includes/formatting.php
- Timestamp:
- 10/07/2006 07:16:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r4353 r4360 619 619 // HTML loop taken from texturize function, could possible be consolidated 620 620 $textarr = preg_split("/(<.*>)/U", $text, -1, PREG_SPLIT_DELIM_CAPTURE); // capture the tags as well as in between 621 $stop = count($textarr);// loop stuff 622 for ($i = 0; $i < $stop; $i++) { 623 $content = $textarr[$i]; 624 if ((strlen($content) > 0) && ('<' != $content{0})) { // If it's not a tag 625 $content = preg_replace($wp_smiliessearch, $wp_smiliesreplace, $content); 626 } 627 $output .= $content; 628 } 621 $output = implode('', preg_replace($wp_smiliessearch, $wp_smiliesreplace, $textarr)); 629 622 } else { 630 623 // return default text.
Note: See TracChangeset
for help on using the changeset viewer.