From 81d878ae27b017893f03c207b9ae2da4704056e1 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 18 Dec 2009 18:19:43 +0000 Subject: [PATCH] Remove stray paren. Props demetris. fixes #11485 git-svn-id: https://develop.svn.wordpress.org/trunk@12452 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 37273498c1..ed24f180fd 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 ) {