Make WordPress Core


Ignore:
Timestamp:
11/21/2011 08:48:57 PM (14 years ago)
Author:
nacin
Message:

Remove $post_type global usage from media list table. Correct $post_type to 'attachment' for upload screens. see #18722.

File:
1 edited

Legend:

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

    r19361 r19385  
    490490                    $taxonomy = 'post_tag';
    491491                $id = 'edit-' . $taxonomy;
     492                break;
     493            case 'upload' :
     494                if ( null === $post_type )
     495                    $post_type = 'attachment';
    492496                break;
    493497        }
Note: See TracChangeset for help on using the changeset viewer.