Make WordPress Core

Changeset 4538


Ignore:
Timestamp:
11/29/2006 08:18:34 AM (19 years ago)
Author:
markjaquith
Message:

No sort if no results. Props mByte in wp-testers list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-functions.php

    r4515 r4538  
    10261026        ORDER BY meta_id DESC
    10271027        LIMIT $limit" );
    1028     natcasesort( $keys );
     1028    if ( $keys )
     1029        natcasesort($keys);
    10291030?>
    10301031<h3><?php _e( 'Add a new custom field:' ) ?></h3>
Note: See TracChangeset for help on using the changeset viewer.