From c08ff58b131f351ff56f212c3ad358e9f27720e8 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 24 Mar 2014 03:41:15 +0000 Subject: [PATCH] Plugin Installer: Disable 'Latest Version Installed' buttons. props paulwilde. see #26952. Built from https://develop.svn.wordpress.org/trunk@27677 git-svn-id: http://core.svn.wordpress.org/trunk@27520 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/plugin-install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index 33d8acac44..e72d2ad124 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -442,10 +442,10 @@ function install_plugin_information() { echo '' . __('Install Update Now') .''; break; case 'newer_installed': - echo '' . sprintf(__('Newer Version (%s) Installed'), $status['version']) . ''; + echo '' . sprintf(__('Newer Version (%s) Installed'), $status['version']) . ''; break; case 'latest_installed': - echo '' . __('Latest Version Installed') . ''; + echo '' . __('Latest Version Installed') . ''; break; } }