Make WordPress Core

Changeset 24379


Ignore:
Timestamp:
05/28/2013 04:10:10 AM (13 years ago)
Author:
SergeyBiryukov
Message:

Fix E_STRICT notice in WP_MS_Themes_List_Table::single_row(). fixes #24356.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-ms-themes-list-table.php

    r23563 r24379  
    244244
    245245        function display_rows() {
    246                 foreach ( $this->items as $key => $theme )
    247                         $this->single_row( $key, $theme );
    248         }
    249 
    250         function single_row( $key, $theme ) {
     246                foreach ( $this->items as $theme )
     247                        $this->single_row( $theme );
     248        }
     249
     250        function single_row( $theme ) {
    251251                global $status, $page, $s, $totals;
    252252
Note: See TracChangeset for help on using the changeset viewer.