Changeset 11012
- Timestamp:
- 04/20/2009 06:15:08 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r11005 r11012 55 55 global $wp_filesystem; 56 56 57 if ( false === ($credentials = $this->skin->request_filesystem_credentials()) ) //request_filesystem_credentials($url)) )57 if ( false === ($credentials = $this->skin->request_filesystem_credentials()) ) 58 58 return false; 59 59 … … 259 259 extract($options); 260 260 261 $this->skin->header();262 $this->skin->before();263 264 261 //Connect to the Filesystem first. 265 262 $res = $this->fs_connect( array(WP_CONTENT_DIR, $destination) ); … … 271 268 return $res; 272 269 } 273 270 271 $this->skin->header(); 272 $this->skin->before(); 273 274 274 //Download the package (Note, This just returns the filename of the file if the package is a local file) 275 275 $download = $this->download_package( $package ); -
trunk/wp-admin/update.php
r11005 r11012 78 78 $title = sprintf( __('Installing Plugin: %s'), $api->name . ' ' . $api->version ); 79 79 $nonce = 'install-plugin_' . $plugin; 80 $url = add_query_arg( array( 81 'plugin' => $plugin, 82 'plugin_name' => $api->name . ' ' . $api->version, 83 'download_url' => $api->download_link 84 ), 'update.php?action=install-plugin'); 80 $url = 'update.php?action=install-plugin&plugin=' . $plugin; 85 81 $type = 'web'; //Install plugin type, From Web or an Upload. 86 82 … … 158 154 $title = sprintf( __('Installing theme: %s'), $api->name . ' ' . $api->version ); 159 155 $nonce = 'install-theme_' . $theme; 160 $url = add_query_arg( array( 161 'theme' => $theme, 162 'theme_name' => $api->name . ' ' . $api->version, 163 'download_url' => $api->download_link 164 ), 'update.php?action=install-theme'); 156 $url = 'update.php?action=install-theme&theme=' . $theme; 165 157 $type = 'web'; //Install theme type, From Web or an Upload. 166 158
Note: See TracChangeset
for help on using the changeset viewer.