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
This commit is contained in:
Dion Hulse 2010-04-06 11:28:55 +00:00
parent 8cbbe731a2
commit 85706b7347
1 changed files with 1 additions and 1 deletions

View File

@ -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' );