From 736a13480d32f79ea70c1b0847b3ffd09c43d71d Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@14496 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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']) . " "; } ?>