Changeset 14691 for trunk/wp-includes/plugin.php
- Timestamp:
- 05/16/2010 01:41:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/plugin.php
r14690 r14691 738 738 return $function; 739 739 740 // Closures are currently implemented as objects741 740 if ( is_object($function) ) { 742 $function = array( $function ); 741 // Closures are currently implemented as objects 742 $function = array( $function, '' ); 743 743 } else { 744 744 $function = (array) $function;
Note: See TracChangeset
for help on using the changeset viewer.