From 85706b73478aed74778803358b01bd65b206d149 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Tue, 6 Apr 2010 11:28:55 +0000 Subject: [PATCH] Fix a typo in the Theme Bulk upgrader. Fixes upgrading for those using FTP. git-svn-id: https://develop.svn.wordpress.org/trunk@14017 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/update.php b/wp-admin/update.php index aa1a7bf0c2..4f97d0029c 100644 --- a/wp-admin/update.php +++ b/wp-admin/update.php @@ -177,7 +177,7 @@ if ( isset($_GET['action']) ) { $themes = array_map('urldecode', $themes); - $url = 'update.php?action=update-selected-themes&themess=' . urlencode(implode(',', $themes)); + $url = 'update.php?action=update-selected-themes&themes=' . urlencode(implode(',', $themes)); $nonce = 'bulk-update-themes'; require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' );