Changeset 578428
- Timestamp:
- 07/28/2012 03:01:06 PM (13 years ago)
- Location:
- backup/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified backup/trunk/backup.php ¶
r577113 r578428 2 2 /* 3 3 Plugin Name: Backup 4 Version: 2.1. 14 Version: 2.1.2 5 5 Plugin URI: http://hel.io/wordpress/backup/ 6 6 Description: Back up your WordPress website to Google Drive. … … 365 365 ignore_user_abort( true ); // Allow the script to run after the user closes the window. 366 366 // All this is needed in order that every echo gets sent to the browser. 367 @apache_setenv( 'no-gzip', 1 );368 367 @ini_set( 'zlib.output_compression', 0 ); 369 368 @ini_set( 'implicit_flush', 1 ); … … 410 409 // Set the backup token here, because in the constructor 'wp_generate_password()' is not defined. 411 410 $this->options['backup_token'] = wp_generate_password( 12, false ); 412 if ( empty( $this->options['local_folder'] ) ) 413 $this->options['local_folder'] = relative_path( ABSPATH, WP_CONTENT_DIR . '/' . $this->options['backup_token'] ); 411 if ( empty( $this->options['local_folder'] ) ) { 412 $this->local_folder = WP_CONTENT_DIR . '/' . $this->options['backup_token']; 413 $this->options['local_folder'] = relative_path( ABSPATH, $this->local_folder ); 414 } 414 415 415 416 if ( $this->goauth->is_authorized() ) -
TabularUnified backup/trunk/readme.txt ¶
r577113 r578428 5 5 Requires at least: 3.4 6 6 Tested up to: 3.4.1 7 Stable tag: 2.1. 17 Stable tag: 2.1.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 58 58 59 59 == Changelog == 60 61 = 2.1.2 = 62 * Fixed a bug that was causing Backup to not work on most shared hosts. 63 * Fixed a bug that was causing the initial backup directory not to be created. 60 64 61 65 = 2.1 =
Note: See TracChangeset
for help on using the changeset viewer.