Fix a typo in the Theme Bulk upgrader. Fixes upgrading for those using FTP.

git-svn-id: http://svn.automattic.com/wordpress/trunk@14017 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2010-04-06 11:28:55 +00:00
parent d5ee7bca10
commit ad72910597
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' );