Optimize Database after Deleting Revisions - Version 4.8.8

Version Description

[12/02/2019] = * BUG FIX: Fixed an (innocent) warning (while cleaning)

Download this release

Release Info

Developer cageehv
Plugin Icon 128x128 Optimize Database after Deleting Revisions
Version 4.8.8
Comparing to
See all releases

Code changes from version 4.8.7 to 4.8.8

classes/odb-cleaner.php CHANGED
@@ -1913,7 +1913,7 @@ function odb_confirm_delete() {
1913
  $msg = __('InnoDB table: skipped...', 'rvg-optimize-database');
1914
  } else {
1915
  // v4.6.3
1916
- if (strtolower($table_info[0]->engine) == 'myisam') {
1917
  $result = $this->odb_optimize_myisam($odb_tables[$i][0]);
1918
  $msg = $result[0]->Msg_text;
1919
  if ($msg == 'OK') {
1913
  $msg = __('InnoDB table: skipped...', 'rvg-optimize-database');
1914
  } else {
1915
  // v4.6.3
1916
+ if (@strtolower($table_info[0]->engine) == 'myisam') {
1917
  $result = $this->odb_optimize_myisam($odb_tables[$i][0]);
1918
  $msg = $result[0]->Msg_text;
1919
  if ($msg == 'OK') {
readme.txt CHANGED
@@ -9,9 +9,9 @@ Author: CAGE Web Design | Rolf van Gelder, Eindhoven, The Netherlands
9
  Contributors: cageehv
10
  Requires at least: 2.8
11
  Requires PHP: 5.0
12
- Tested up to: 5.2.3
13
- Stable tag: 4.8.7
14
- Version: 4.8.7
15
  License: GPLv2 or later
16
 
17
  == Description ==
@@ -111,6 +111,9 @@ http://cagewebdev.com/category/news-tech-art/wordpress/
111
  * If you run the plugin from any of the sites, it will cleanup ALL the sites in the network!
112
 
113
  == Changelog ==
 
 
 
114
  = 4.8.7 [09/28/2019] =
115
  * BUG FIX: Bug fix for 'Delete revisions older than'
116
 
9
  Contributors: cageehv
10
  Requires at least: 2.8
11
  Requires PHP: 5.0
12
+ Tested up to: 5.3
13
+ Stable tag: 4.8.8
14
+ Version: 4.8.8
15
  License: GPLv2 or later
16
 
17
  == Description ==
111
  * If you run the plugin from any of the sites, it will cleanup ALL the sites in the network!
112
 
113
  == Changelog ==
114
+ = 4.8.8 [12/02/2019] =
115
+ * BUG FIX: Fixed an (innocent) warning (while cleaning)
116
+
117
  = 4.8.7 [09/28/2019] =
118
  * BUG FIX: Bug fix for 'Delete revisions older than'
119
 
rvg-optimize-database.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * @package Optimize Database after Deleting Revisions
4
- * @version 4.8.7
5
  */
6
  /*
7
  Plugin Name: Optimize Database after Deleting Revisions
@@ -10,7 +10,7 @@ Description: Optimizes the Wordpress Database after Cleaning it out
10
  Author: CAGE Web Design | Rolf van Gelder, Eindhoven, The Netherlands
11
  Author URI: http://cagewebdev.com
12
  Network: True
13
- Version: 4.8.7
14
  */
15
 
16
  /********************************************************************************************
@@ -28,8 +28,8 @@ $odb_class = new OptimizeDatabase();
28
 
29
  class OptimizeDatabase {
30
  // VERSION
31
- var $odb_version = '4.8.7';
32
- var $odb_release_date = '09/28/2019';
33
 
34
  // PLUGIN OPTIONS
35
  var $odb_rvg_options = array();
1
  <?php
2
  /**
3
  * @package Optimize Database after Deleting Revisions
4
+ * @version 4.8.8
5
  */
6
  /*
7
  Plugin Name: Optimize Database after Deleting Revisions
10
  Author: CAGE Web Design | Rolf van Gelder, Eindhoven, The Netherlands
11
  Author URI: http://cagewebdev.com
12
  Network: True
13
+ Version: 4.8.8
14
  */
15
 
16
  /********************************************************************************************
28
 
29
  class OptimizeDatabase {
30
  // VERSION
31
+ var $odb_version = '4.8.8';
32
+ var $odb_release_date = '12/02/2019';
33
 
34
  // PLUGIN OPTIONS
35
  var $odb_rvg_options = array();