From 4b724a5d34219049219bea82b3057c11eebb8d8c Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 7 May 2010 04:30:53 +0000 Subject: [PATCH] Use a more generic string for GUU plugins and themes, as inactive items aren't 'running.' fixes #12517. git-svn-id: https://develop.svn.wordpress.org/trunk@14496 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/update-core.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index e6536251b0..e15dfc621e 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -224,7 +224,7 @@ function list_plugin_updates() { echo " - {$plugin_data->Name}" . sprintf(__('You are running version %1$s. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . " + {$plugin_data->Name}" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . " "; } ?> @@ -271,7 +271,7 @@ function list_theme_updates() { echo " - {$theme_data->Name}" . sprintf(__('You are running version %1$s. Update to %2$s.'), $theme_data->Version, $theme_data->update['new_version']) . " + {$theme_data->Name}" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $theme_data->Version, $theme_data->update['new_version']) . " "; } ?>