Changeset 31090 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 01/08/2015 07:04:40 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r31014 r31090 328 328 if ( false === $priority ) { 329 329 $wp_filter[ $tag ] = array(); 330 } else 330 } elseif ( isset( $wp_filter[ $tag ][ $priority ] ) ) { 331 331 $wp_filter[ $tag ][ $priority ] = array(); 332 332 } … … 901 901 return $obj_idx; 902 902 } 903 } else if ( is_string($function[0]) ) {903 } elseif ( is_string( $function[0] ) ) { 904 904 // Static Calling 905 905 return $function[0] . '::' . $function[1];
Note: See TracChangeset
for help on using the changeset viewer.