From f913741b5858caf96a6682417029fe5cf33a2783 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Sep 2013 05:10:43 +0000 Subject: [PATCH] Avoid 'Only variables should be passed by reference' notice on Widgets screen. props jdgrimes. fixes #25225. git-svn-id: https://develop.svn.wordpress.org/trunk@25226 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/widgets.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/widgets.php b/src/wp-admin/widgets.php index 3e0b14621d..8be2a087fa 100644 --- a/src/wp-admin/widgets.php +++ b/src/wp-admin/widgets.php @@ -182,7 +182,8 @@ if ( isset($_GET['editwidget']) && $_GET['editwidget'] ) { if ( isset($_GET['addnew']) ) { // Default to the first sidebar - $sidebar = array_shift( $keys = array_keys($wp_registered_sidebars) ); + $keys = array_keys( $wp_registered_sidebars ); + $sidebar = array_shift( $keys ); if ( isset($_GET['base']) && isset($_GET['num']) ) { // multi-widget // Copy minimal info from an existing instance of this widget to a new instance