Changeset 12199
- Timestamp:
- 11/17/2009 08:18:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/kses.php
r12125 r12199 776 776 function wp_kses_bad_protocol($string, $allowed_protocols) { 777 777 $string = wp_kses_no_null($string); 778 $string = preg_replace('/\xad+/', '', $string); # deals with Opera "feature"779 778 $string2 = $string.'a'; 780 779 … … 921 920 $string2 = preg_replace('/\s/', '', $string2); 922 921 $string2 = wp_kses_no_null($string2); 923 $string2 = preg_replace('/\xad+/', '', $string2);924 # deals with Opera "feature"925 922 $string2 = strtolower($string2); 926 923
Note: See TracChangeset
for help on using the changeset viewer.