Changeset 13240 for trunk/wp-includes/functions.php
- Timestamp:
- 02/20/2010 12:50:29 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r13229 r13240 1443 1443 * Walks the array while sanitizing the contents. 1444 1444 * 1445 * @uses $wpdb Used to sanitize values1446 1445 * @since 0.71 1447 1446 * … … 1450 1449 */ 1451 1450 function add_magic_quotes( $array ) { 1452 global $wpdb;1453 1454 1451 foreach ( (array) $array as $k => $v ) { 1455 1452 if ( is_array( $v ) ) {
Note: See TracChangeset
for help on using the changeset viewer.