Remove stray paren. Props demetris. fixes #11485

git-svn-id: http://svn.automattic.com/wordpress/trunk@12452 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-12-18 18:19:43 +00:00
parent d3a748eb46
commit b14bd65cd3
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ function list_plugin_updates() {
$compat = $info->compatibility[$cur_wp_version][$plugin_data->update->new_version];
$compat = '<br />' . 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 = '<br />' . sprintf(__('Compatibility with WordPress %1$s: Unknown)'), $cur_wp_version);
$compat = '<br />' . sprintf(__('Compatibility with WordPress %1$s: Unknown'), $cur_wp_version);
}
// Get plugin compat for updated version of WordPress.
if ( $core_update_version ) {