Changeset 5261 for trunk/wp-includes/formatting.php
- Timestamp:
- 04/12/2007 10:00:22 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r5227 r5261 582 582 583 583 584 function stripslashes_deep($value) 585 { 584 function stripslashes_deep($value) { 586 585 $value = is_array($value) ? 587 array_map('stripslashes_deep', $value) : 588 stripslashes($value); 586 array_map('stripslashes_deep', $value) : 587 stripslashes($value); 588 589 return $value; 590 } 591 592 function urlencode_deep($value) { 593 $value = is_array($value) ? 594 array_map('urlencode_deep', $value) : 595 urlencode($value); 589 596 590 597 return $value;
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)