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

git-svn-id: http://core.svn.wordpress.org/trunk@24379 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-05-28 04:10:10 +00:00
parent b13b659365
commit e67ce959c5

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;