From b14bd65cd373843900ed44245164cc1e9cee3c74 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 18 Dec 2009 18:19:43 +0000 Subject: [PATCH] Remove stray paren. Props demetris. fixes #11485 git-svn-id: http://svn.automattic.com/wordpress/trunk@12452 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 37273498c..ed24f180f 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -188,7 +188,7 @@ function list_plugin_updates() { $compat = $info->compatibility[$cur_wp_version][$plugin_data->update->new_version]; $compat = '
' . sprintf(__('Compatibility with WordPress %1$s: %2$d%% (%3$d "works" votes out of %4$d total)'), $cur_wp_version, $compat[0], $compat[2], $compat[1]); } else { - $compat = '
' . sprintf(__('Compatibility with WordPress %1$s: Unknown)'), $cur_wp_version); + $compat = '
' . sprintf(__('Compatibility with WordPress %1$s: Unknown'), $cur_wp_version); } // Get plugin compat for updated version of WordPress. if ( $core_update_version ) {