Make WordPress Core


Ignore:
Timestamp:
07/11/2007 07:57:43 PM (19 years ago)
Author:
ryan
Message:

Post filter rework. see #4546

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r5788 r5796  
    12911291
    12921292function 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 ) )
    12941296                $r =& $args;
    12951297        else
Note: See TracChangeset for help on using the changeset viewer.