Changeset 2700 for trunk/wp-includes/functions-formatting.php
- Timestamp:
- 07/06/2005 01:12:38 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions-formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-formatting.php
r2699 r2700 531 531 532 532 return $wpdb->escape($gpc); 533 } 534 535 536 function stripslashes_deep($value) 537 { 538 $value = is_array($value) ? 539 array_map('stripslashes_deep', $value) : 540 stripslashes($value); 541 542 return $value; 533 543 } 534 544
Note: See TracChangeset
for help on using the changeset viewer.