Make WordPress Core


Ignore:
Timestamp:
01/08/2010 08:34:39 AM (15 years ago)
Author:
westi
Message:

Switch to passing arrays instead of query strings to functions. Fixes #6647 props filosofo and hakre.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/export.php

    r12515 r12657  
    5252unset($custom_taxonomies['link_category']);
    5353$custom_taxonomies = array_keys($custom_taxonomies);
    54 $terms = (array) get_terms($custom_taxonomies, 'get=all');
     54$terms = (array) get_terms($custom_taxonomies, array('get' => 'all'));
    5555
    5656/**
Note: See TracChangeset for help on using the changeset viewer.