Version Description
[07/15/2019] = * BUG FIX: Scheduler bug fixed
Download this release
Release Info
Developer | cageehv |
Plugin | Optimize Database after Deleting Revisions |
Version | 4.8.1 |
Comparing to | |
See all releases |
Code changes from version 4.8.0 to 4.8.1
- classes/odb-cleaner.php +5 -0
- readme.txt +6 -3
- rvg-optimize-database.php +4 -4
classes/odb-cleaner.php
CHANGED
@@ -1111,6 +1111,11 @@ function odb_confirm_delete() {
|
|
1111 |
global $odb_class, $wpdb;
|
1112 |
|
1113 |
$total_deleted = 0;
|
|
|
|
|
|
|
|
|
|
|
1114 |
|
1115 |
if($odb_class->odb_rvg_options['delete_older'] == 'Y') {
|
1116 |
// DELETE REVISIONS OLDER THAN x DAYS
|
1111 |
global $odb_class, $wpdb;
|
1112 |
|
1113 |
$total_deleted = 0;
|
1114 |
+
|
1115 |
+
// v4.8.1
|
1116 |
+
if($scheduler && $action == '') {
|
1117 |
+
$action = 'run_detail';
|
1118 |
+
} // if($scheduler && $action == '')
|
1119 |
|
1120 |
if($odb_class->odb_rvg_options['delete_older'] == 'Y') {
|
1121 |
// DELETE REVISIONS OLDER THAN x DAYS
|
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.
|
13 |
-
Stable tag: 4.8.
|
14 |
-
Version: 4.8.
|
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.0 [05/26/2019] =
|
115 |
* NEW: New analyze / optimize options (summary or detail)
|
116 |
|
9 |
Contributors: cageehv
|
10 |
Requires at least: 2.8
|
11 |
Requires PHP: 5.0
|
12 |
+
Tested up to: 5.2.2
|
13 |
+
Stable tag: 4.8.1
|
14 |
+
Version: 4.8.1
|
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.1 [07/15/2019] =
|
115 |
+
* BUG FIX: Scheduler bug fixed
|
116 |
+
|
117 |
= 4.8.0 [05/26/2019] =
|
118 |
* NEW: New analyze / optimize options (summary or detail)
|
119 |
|
rvg-optimize-database.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimize Database after Deleting Revisions
|
4 |
-
* @version 4.8.
|
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.
|
14 |
*/
|
15 |
|
16 |
/********************************************************************************************
|
@@ -28,8 +28,8 @@ $odb_class = new OptimizeDatabase();
|
|
28 |
|
29 |
class OptimizeDatabase {
|
30 |
// VERSION
|
31 |
-
var $odb_version = '4.8.
|
32 |
-
var $odb_release_date = '
|
33 |
|
34 |
// PLUGIN OPTIONS
|
35 |
var $odb_rvg_options = array();
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimize Database after Deleting Revisions
|
4 |
+
* @version 4.8.1
|
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.1
|
14 |
*/
|
15 |
|
16 |
/********************************************************************************************
|
28 |
|
29 |
class OptimizeDatabase {
|
30 |
// VERSION
|
31 |
+
var $odb_version = '4.8.1';
|
32 |
+
var $odb_release_date = '07/15/2019';
|
33 |
|
34 |
// PLUGIN OPTIONS
|
35 |
var $odb_rvg_options = array();
|