Changeset 5708 for trunk/wp-includes/post.php
- Timestamp:
- 06/14/2007 10:45:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r5707 r5708 186 186 187 187 $r = wp_parse_args( $args, $defaults ); 188 extract( $r );188 extract( $r, EXTR_SKIP ); 189 189 190 190 $numberposts = (int) $numberposts; … … 496 496 497 497 // export array as variables 498 extract($postarr );498 extract($postarr, EXTR_SKIP); 499 499 500 500 // Are we updating or creating? … … 864 864 865 865 // import postdata as variables 866 extract($postdata );866 extract($postdata, EXTR_SKIP); 867 867 868 868 // form an excerpt … … 1051 1051 1052 1052 $r = wp_parse_args( $args, $defaults ); 1053 extract( $r );1053 extract( $r, EXTR_SKIP ); 1054 1054 1055 1055 $key = md5( serialize( $r ) ); … … 1205 1205 1206 1206 // Export array as variables 1207 extract($object );1207 extract($object, EXTR_SKIP); 1208 1208 1209 1209 // Get the basics.
Note: See TracChangeset
for help on using the changeset viewer.