BackWPup – WordPress Backup Plugin - Version 1.3.3

Version Description

  • fixed bug with clear only displayed
  • fiex bug with Parse Error for some php versions
Download this release

Release Info

Developer danielhuesken
Plugin Icon 128x128 BackWPup – WordPress Backup Plugin
Version 1.3.3
Comparing to
See all releases

Code changes from version 1.3.2 to 1.3.3

Files changed (4) hide show
  1. app/functions.php +3 -3
  2. app/list-tables.php +1 -1
  3. backwpup.php +2 -2
  4. readme.txt +5 -1
app/functions.php CHANGED
@@ -610,7 +610,7 @@ if ( !defined('ABSPATH') )
610
  $count=0;
611
  foreach ($logfiles as $logfile) {
612
  $logdata=backwpup_read_logheader($cfg['dirlogs'].'/'.$logfile);
613
- echo '<a href="'.wp_nonce_url('admin.php?page=BackWPup&action=view_log&logfile='.$cfg['dirlogs'].'/'.$logfile, 'view-log_'.$logfile).'" title="'.__('View Log','backwpup').'">'.date_i18n(get_option('date_format'),$logdata['logtime']).' '.date_i18n(get_option('time_format'),$logdata['logtime']).': <i>';
614
  if (empty($logdata['name']))
615
  echo $logdata['type'];
616
  else
@@ -937,8 +937,8 @@ if ( !defined('ABSPATH') )
937
  }
938
  //Sort list
939
  $tmp = Array();
940
- foreach($files as &$ma)
941
- $tmp[] = &$ma["time"];
942
  array_multisort($tmp, SORT_DESC, $files);
943
  return $files;
944
  }
610
  $count=0;
611
  foreach ($logfiles as $logfile) {
612
  $logdata=backwpup_read_logheader($cfg['dirlogs'].'/'.$logfile);
613
+ echo '<a href="'.wp_nonce_url('admin.php?page=BackWPup&subpage=view_log&logfile='.$cfg['dirlogs'].'/'.$logfile, 'view-log_'.$logfile).'" title="'.__('View Log','backwpup').'">'.date_i18n(get_option('date_format'),$logdata['logtime']).' '.date_i18n(get_option('time_format'),$logdata['logtime']).': <i>';
614
  if (empty($logdata['name']))
615
  echo $logdata['type'];
616
  else
937
  }
938
  //Sort list
939
  $tmp = Array();
940
+ foreach($files as $ma)
941
+ $tmp[] = $ma["time"];
942
  array_multisort($tmp, SORT_DESC, $files);
943
  return $files;
944
  }
app/list-tables.php CHANGED
@@ -100,7 +100,7 @@ class BackWPup_Jobs_Table extends WP_List_Table {
100
  case 'jobname':
101
  $r .= "<td $attributes><strong><a href=\"".wp_nonce_url('admin.php?page=BackWPup&subpage=edit&jobid='.$jobid, 'edit-job')."\" title=\"".__('Edit:','backwpup').$jobvalue['name']."\">".esc_html($jobvalue['name'])."</a></strong>";
102
  $actions = array();
103
- if (empty($jobvalue['logfile']) and !empty($jobvalue['starttime'])) {
104
  $actions['edit'] = "<a href=\"" . wp_nonce_url('admin.php?page=BackWPup&subpage=edit&jobid='.$jobid, 'edit-job') . "\">" . __('Edit') . "</a>";
105
  $actions['copy'] = "<a href=\"" . wp_nonce_url('admin.php?page=BackWPup&action=copy&jobid='.$jobid, 'copy-job_'.$jobid) . "\">" . __('Copy','backwpup') . "</a>";
106
  $actions['delete'] = "<a class=\"submitdelete\" href=\"" . wp_nonce_url('admin.php?page=BackWPup&action=delete&jobs[]='.$jobid, 'bulk-jobs') . "\" onclick=\"if ( confirm('" . esc_js(__("You are about to delete this Job. \n 'Cancel' to stop, 'OK' to delete.","backwpup")) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
100
  case 'jobname':
101
  $r .= "<td $attributes><strong><a href=\"".wp_nonce_url('admin.php?page=BackWPup&subpage=edit&jobid='.$jobid, 'edit-job')."\" title=\"".__('Edit:','backwpup').$jobvalue['name']."\">".esc_html($jobvalue['name'])."</a></strong>";
102
  $actions = array();
103
+ if (empty($jobvalue['logfile']) and empty($jobvalue['starttime'])) {
104
  $actions['edit'] = "<a href=\"" . wp_nonce_url('admin.php?page=BackWPup&subpage=edit&jobid='.$jobid, 'edit-job') . "\">" . __('Edit') . "</a>";
105
  $actions['copy'] = "<a href=\"" . wp_nonce_url('admin.php?page=BackWPup&action=copy&jobid='.$jobid, 'copy-job_'.$jobid) . "\">" . __('Copy','backwpup') . "</a>";
106
  $actions['delete'] = "<a class=\"submitdelete\" href=\"" . wp_nonce_url('admin.php?page=BackWPup&action=delete&jobs[]='.$jobid, 'bulk-jobs') . "\" onclick=\"if ( confirm('" . esc_js(__("You are about to delete this Job. \n 'Cancel' to stop, 'OK' to delete.","backwpup")) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
backwpup.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: BackWPup
4
  Plugin URI: http://danielhuesken.de/portfolio/backwpup/
5
  Description: Backup and more of your WordPress Blog Database and Files.
6
  Author: Daniel H&uuml;sken
7
- Version: 1.3.2
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
@@ -34,7 +34,7 @@ if ( !defined('ABSPATH') )
34
  //Set plugin dirname
35
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
36
  //Set Plugin Version
37
- define('BACKWPUP_VERSION', '1.3.2');
38
  //load Text Domain
39
  load_plugin_textdomain('backwpup', false, BACKWPUP_PLUGIN_BASEDIR.'/lang');
40
  //Load functions file
4
  Plugin URI: http://danielhuesken.de/portfolio/backwpup/
5
  Description: Backup and more of your WordPress Blog Database and Files.
6
  Author: Daniel H&uuml;sken
7
+ Version: 1.3.3
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
34
  //Set plugin dirname
35
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
36
  //Set Plugin Version
37
+ define('BACKWPUP_VERSION', '1.3.3');
38
  //load Text Domain
39
  load_plugin_textdomain('backwpup', false, BACKWPUP_PLUGIN_BASEDIR.'/lang');
40
  //Load functions file
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=danie
4
  Tags: backup, admin, file, Database, mysql, cron, ftp, S3, export, xml, Rackspase, cloud, webdav
5
  Requires at least: 2.8
6
  Tested up to: 3.1.0
7
- Stable tag: 1.3.2
8
 
9
  Backup and more of your WordPress Blog Database and Files
10
 
@@ -82,6 +82,10 @@ Place mail only little archives
82
  1. Job Page
83
 
84
  == Changelog ==
 
 
 
 
85
  = 1.3.2 =
86
  * added changeble backup file prefix
87
  * bug fixes
4
  Tags: backup, admin, file, Database, mysql, cron, ftp, S3, export, xml, Rackspase, cloud, webdav
5
  Requires at least: 2.8
6
  Tested up to: 3.1.0
7
+ Stable tag: 1.3.3
8
 
9
  Backup and more of your WordPress Blog Database and Files
10
 
82
  1. Job Page
83
 
84
  == Changelog ==
85
+ = 1.3.3 =
86
+ * fixed bug with clear only displayed
87
+ * fiex bug with Parse Error for some php versions
88
+
89
  = 1.3.2 =
90
  * added changeble backup file prefix
91
  * bug fixes