Changeset 27707
- Timestamp:
- 03/25/2014 12:52:48 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r27388 r27707 764 764 case 0 : # attribute name, href for instance 765 765 766 if ( preg_match('/^([-a-zA-Z]+)/', $attr, $match)) {766 if ( preg_match('/^([-a-zA-Z:]+)/', $attr, $match ) ) { 767 767 $attrname = $match[1]; 768 768 $working = $mode = 1; 769 $attr = preg_replace( '/^[-a-zA-Z]+/', '', $attr);769 $attr = preg_replace( '/^[-a-zA-Z:]+/', '', $attr ); 770 770 } 771 771
Note: See TracChangeset
for help on using the changeset viewer.