Changeset 5796 for trunk/wp-includes/functions.php
- Timestamp:
- 07/11/2007 07:57:43 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r5788 r5796 1291 1291 1292 1292 function wp_parse_args( $args, $defaults = '' ) { 1293 if ( is_array( $args ) ) 1293 if ( is_object($args) ) 1294 $r = get_object_vars($args); 1295 else if ( is_array( $args ) ) 1294 1296 $r =& $args; 1295 1297 else
Note: See TracChangeset
for help on using the changeset viewer.