Changeset 23591 for trunk/wp-includes/formatting.php
- Timestamp:
- 03/03/2013 04:30:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r23555 r23591 1424 1424 $gpc = stripslashes($gpc); 1425 1425 1426 return esc_sql($gpc);1426 return wp_slash($gpc); 1427 1427 } 1428 1428 … … 1720 1720 $text = stripslashes($text); 1721 1721 $text = preg_replace_callback('|<a (.+?)>|i', 'wp_rel_nofollow_callback', $text); 1722 $text = esc_sql($text);1722 $text = wp_slash($text); 1723 1723 return $text; 1724 1724 }
Note: See TracChangeset
for help on using the changeset viewer.