mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 16:21:26 +01:00
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:
parent
b13b659365
commit
e67ce959c5
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user