Changeset 957 for trunk/wp-includes/functions-formatting.php
- Timestamp:
- 03/01/2004 07:55:45 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-formatting.php
r956 r957 318 318 319 319 function convert_smilies($text) { 320 global $smilies_directory, $use_smilies;321 320 global $wp_smiliessearch, $wp_smiliesreplace; 322 321 $output = ''; 323 if ( $use_smilies) {322 if (get_settings('use_smilies')) { 324 323 // HTML loop taken from texturize function, could possible be consolidated 325 324 $textarr = preg_split("/(<.*>)/U", $text, -1, PREG_SPLIT_DELIM_CAPTURE); // capture the tags as well as in between
Note: See TracChangeset
for help on using the changeset viewer.