Changeset 5444 for trunk/wp-includes/author-template.php
- Timestamp:
- 05/11/2007 03:10:05 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/author-template.php
r5135 r5444 176 176 global $wpdb; 177 177 178 if ( is_array($args) ) 179 $r = &$args; 180 else 181 parse_str($args, $r); 182 183 $defaults = array('optioncount' => false, 'exclude_admin' => true, 'show_fullname' => false, 'hide_empty' => true, 184 'feed' => '', 'feed_image' => ''); 185 $r = array_merge($defaults, $r); 178 $defaults = array( 179 'optioncount' => false, 'exclude_admin' => true, 180 'show_fullname' => false, 'hide_empty' => true, 181 'feed' => '', 'feed_image' => '' 182 ); 183 184 $r = wp_parse_args( $args, $defaults ); 186 185 extract($r); 187 186
Note: See TracChangeset
for help on using the changeset viewer.