Changeset 12515 for trunk/wp-admin/import/wordpress.php
- Timestamp:
- 12/23/2009 03:31:02 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/import/wordpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wordpress.php
r12513 r12515 303 303 global $wpdb; 304 304 305 $cat_names = (array) get_terms('category', 'fields=names');305 $cat_names = (array) get_terms('category', array('fields' => 'names')); 306 306 307 307 while ( $c = array_shift($this->categories) ) { … … 333 333 global $wpdb; 334 334 335 $tag_names = (array) get_terms('post_tag', 'fields=names');335 $tag_names = (array) get_terms('post_tag', array('fields' => 'names')); 336 336 337 337 while ( $c = array_shift($this->tags) ) {
Note: See TracChangeset
for help on using the changeset viewer.