mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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:
parent
0df3ab62a7
commit
fbdb577df0
@ -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