From 0e3b5ba03d20aa8294675c0827e25ddb769812a1 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 4 Jan 2011 19:09:20 +0000 Subject: [PATCH] Use correct variable. props SergeyBiryukov, TobiasBg, fixes #16063. git-svn-id: https://develop.svn.wordpress.org/trunk@17219 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/menu.php b/wp-admin/menu.php index 84e68fa3d1..c75bca6018 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -55,7 +55,7 @@ if ( ! is_multisite() || is_super_admin() ) { } if ( ! is_multisite() ) { - $submenu[ 'index.php' ][10] = array( sprintf( __('Updates %s'), "" . number_format_i18n($total_update_count) . "" ), 'update_core', 'update-core.php'); + $submenu[ 'index.php' ][10] = array( sprintf( __('Updates %s'), "" . number_format_i18n($total_update_count) . "" ), 'update_core', 'update-core.php'); } unset($plugin_update_count, $theme_update_count, $wordpress_update_count, $update_themes, $update_plugins, $update_wordpress);