Make WordPress Core


Ignore:
Timestamp:
02/20/2010 02:01:46 AM (15 years ago)
Author:
dd32
Message:

Variable Cleanup, Unused variables, Typo'd variables, unused code blocks. Fixes #12299

File:
1 edited

Legend:

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

    r13132 r13242  
    18361836    if ( $start < 1 )
    18371837        $start = 0;
    1838     add_filter( 'post_limits', $limit_filter = create_function( '$a', "return 'LIMIT $start, 10';" ) );
     1838    add_filter( 'post_limits', create_function( '$a', "return 'LIMIT $start, 10';" ) );
    18391839
    18401840    list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query();
Note: See TracChangeset for help on using the changeset viewer.