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

git-svn-id: https://develop.svn.wordpress.org/trunk@24379 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-05-28 04:10:10 +00:00
parent 0df3ab62a7
commit fbdb577df0

View File

@ -243,11 +243,11 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
function display_rows() {
foreach ( $this->items as $key => $theme )
$this->single_row( $key, $theme );
foreach ( $this->items as $theme )
$this->single_row( $theme );
}
function single_row( $key, $theme ) {
function single_row( $theme ) {
global $status, $page, $s, $totals;
$context = $status;