Skip to content

Commit

Permalink
Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuesken committed Sep 22, 2015
1 parent 179a7d9 commit 39050d4
Show file tree
Hide file tree
Showing 23 changed files with 26,636 additions and 33,107 deletions.
10 changes: 2 additions & 8 deletions backwpup.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
* Description: WordPress Backup Plugin
* Author: Inpsyde GmbH
* Author URI: http://inpsyde.com
* Version: 3.2.0-rc1
* Version: 3.2.0
* Text Domain: backwpup
* Domain Path: /languages/
* Network: true
* License: GPLv3
* License URI: http://www.gnu.org/licenses/gpl-3.0
* Slug: backwpup
*/

/**
Expand All @@ -36,11 +35,7 @@

// Don't activate on anything less than PHP 5.2.7 or WordPress 3.1
if ( version_compare( PHP_VERSION, '5.2.7', '<' ) || version_compare( get_bloginfo( 'version' ), '3.4', '<' ) || ! function_exists( 'spl_autoload_register' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
deactivate_plugins( basename( __FILE__ ) );
if ( isset( $_GET['action'] ) && ( $_GET['action'] == 'activate' || $_GET['action'] == 'error_scrape' ) ) {
die( __( 'BackWPup requires PHP version 5.2.7 with spl extension or greater and WordPress 3.4 or greater.', 'backwpup' ) );
}
die( 'BackWPup requires PHP version 5.2.7 with spl extension or greater and WordPress 3.4 or greater.' );
}

//Start Plugin
Expand Down Expand Up @@ -148,7 +143,6 @@ public static function get_plugin_data( $name = NULL ) {
'authoruri' => 'Author URI',
'textdomain' => 'Text Domain',
'domainpath' => 'Domain Path',
'slug' => 'Slug',
'license' => 'License',
'licenseuri' => 'License URI'
), 'plugin' );
Expand Down
2 changes: 1 addition & 1 deletion inc/class-job.php
Original file line number Diff line number Diff line change
Expand Up @@ -2164,7 +2164,7 @@ private function create_archive() {
}

if ( $this->backup_filesize >= PHP_INT_MAX ) {
$this->log( __( 'The Backup archive will be too large for for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each.', 'backwpup' ), E_USER_ERROR );
$this->log( __( 'The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each.', 'backwpup' ), E_USER_ERROR );
$this->end();
}
else {
Expand Down
2 changes: 1 addition & 1 deletion inc/class-page-about.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ public static function page() {
<?php } ?>
<?php
if ( class_exists( 'BackWPup_Pro', FALSE ) ) :
$autoupdate = BackWPup_Pro_MarketPress_Autoupdate::get_instance( BackWPup::get_plugin_data( 'Slug' ) , BackWPup::get_plugin_data( 'MainFile' ) );
$autoupdate = BackWPup_Pro_MarketPress_Autoupdate::get_instance();
if ( $autoupdate->license_check() == 'false' ) :
$plugins = get_plugins();
$localplugin = FALSE;
Expand Down
9 changes: 8 additions & 1 deletion inc/class-page-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,14 @@ class="regular-text" />
echo '<tr title=""><td>' . __( 'BackWPup version', 'backwpup' ) . '</td><td>' . BackWPup::get_plugin_data( 'Version' ) . ' <a href="' . translate( BackWPup::get_plugin_data( 'pluginuri' ), 'backwpup' ) . '">' . __( 'Get pro.', 'backwpup' ) . '</a></td></tr>';
else
echo '<tr title=""><td>' . __( 'BackWPup Pro version', 'backwpup' ) . '</td><td>' . BackWPup::get_plugin_data( 'Version' ) . '</td></tr>';
echo '<tr title="&gt;=5.3.3"><td>' . __( 'PHP version', 'backwpup' ) . '</td><td>' . PHP_VERSION . '</td></tr>';
$bit = '';
if ( PHP_INT_SIZE === 4 ) {
$bit = ' (32bit)';
}
if ( PHP_INT_SIZE === 8 ) {
$bit = ' (64bit)';
}
echo '<tr title="&gt;=5.3.3"><td>' . __( 'PHP version', 'backwpup' ) . '</td><td>' . PHP_VERSION . ' ' . $bit . '</td></tr>';
echo '<tr title="&gt;=5.0.7"><td>' . __( 'MySQL version', 'backwpup' ) . '</td><td>' . $wpdb->get_var( "SELECT VERSION() AS version" ) . '</td></tr>';
if ( function_exists( 'curl_version' ) ) {
$curlversion = curl_version();
Expand Down
Binary file modified languages/backwpup-de_DE.mo
Binary file not shown.
462 changes: 240 additions & 222 deletions languages/backwpup-de_DE.po

Large diffs are not rendered by default.

Binary file modified languages/backwpup-es_ES.mo
Binary file not shown.
Loading

0 comments on commit 39050d4

Please sign in to comment.