From e67ce959c521fa51f06aa4b9f12e8a2b7581e33f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 28 May 2013 04:10:10 +0000 Subject: [PATCH] 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 --- wp-admin/includes/class-wp-ms-themes-list-table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index df9db5e892..23806ba694 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -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;