From 6d1975e33594c9fcef258f02e264e20336b2372f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 5 Jun 2013 16:51:07 +0000 Subject: [PATCH] Fix E_STRICT notice in WP_Theme_Install_List_Table::_js_vars(). see #24356. git-svn-id: https://develop.svn.wordpress.org/trunk@24409 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-theme-install-list-table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/class-wp-theme-install-list-table.php b/wp-admin/includes/class-wp-theme-install-list-table.php index 8b267656ce..8a46199f16 100644 --- a/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/wp-admin/includes/class-wp-theme-install-list-table.php @@ -362,7 +362,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { * @uses $tab Global; current tab within Themes->Install screen * @uses $type Global; type of search. */ - function _js_vars() { + function _js_vars( $extra_args = array() ) { global $tab, $type; parent::_js_vars( compact( 'tab', 'type' ) ); }