Version Description
[04/26/2015] = * BUG FIX: fixed a bug for the excluded tables (didn't work anymore)
Download this release
Release Info
Developer | cageehv |
Plugin | Optimize Database after Deleting Revisions |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4 to 3.4.1
- readme.txt +6 -3
- rvg-optimize-db.php +5 -5
readme.txt
CHANGED
@@ -7,9 +7,9 @@ Tags: database, delete, revisions, optimize, post, posts, page, pages, clean, cl
|
|
7 |
Author URI: http://cagewebdev.com
|
8 |
Author: CAGE Web Design | Rolf van Gelder, Eindhoven, The Netherlands
|
9 |
Requires at least: 2.8
|
10 |
-
Tested up to: 4.2
|
11 |
-
Stable tag: 3.4
|
12 |
-
Version: 3.4
|
13 |
License: GPLv2 or later
|
14 |
|
15 |
== Description ==
|
@@ -82,6 +82,9 @@ http://cagewebdev.com/index.php/wordpress-plugins/
|
|
82 |
* If you run the plugin from any of the sites, it will cleanup ALL the sites in the network!
|
83 |
|
84 |
== Changelog ==
|
|
|
|
|
|
|
85 |
= 3.4 [04/24/2015] =
|
86 |
* NEW: Ukrainian translation (uk_UA) added
|
87 |
* CHANGE: updates for Dutch and Italian translations
|
7 |
Author URI: http://cagewebdev.com
|
8 |
Author: CAGE Web Design | Rolf van Gelder, Eindhoven, The Netherlands
|
9 |
Requires at least: 2.8
|
10 |
+
Tested up to: 4.2.1
|
11 |
+
Stable tag: 3.4.1
|
12 |
+
Version: 3.4.1
|
13 |
License: GPLv2 or later
|
14 |
|
15 |
== Description ==
|
82 |
* If you run the plugin from any of the sites, it will cleanup ALL the sites in the network!
|
83 |
|
84 |
== Changelog ==
|
85 |
+
= 3.4.1 [04/26/2015] =
|
86 |
+
* BUG FIX: fixed a bug for the excluded tables (didn't work anymore)
|
87 |
+
|
88 |
= 3.4 [04/24/2015] =
|
89 |
* NEW: Ukrainian translation (uk_UA) added
|
90 |
* CHANGE: updates for Dutch and Italian translations
|
rvg-optimize-db.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimize Database after Deleting Revisions
|
4 |
-
* @version 3.4
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Optimize Database after Deleting Revisions
|
@@ -9,11 +9,11 @@ Plugin URI: http://cagewebdev.com/index.php/optimize-database-after-deleting-rev
|
|
9 |
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 |
-
Version: 3.4
|
13 |
*/
|
14 |
|
15 |
-
$odb_version = '3.4';
|
16 |
-
$odb_release_date = '04/
|
17 |
|
18 |
// v3.3 - MULTISITE
|
19 |
$odb_ms_prefixes = array();
|
@@ -652,7 +652,7 @@ if($rvg_odb_logging_on == 'Y') $rvg_odb_logging_on_checked = ' checked="checke
|
|
652 |
if($excluded == 'excluded') $cb_checked = ' checked';
|
653 |
?>
|
654 |
<div class="odb-options-table<?php echo $class;?>" title="<?php echo $tables[$i][0];?>">
|
655 |
-
<input id="cb_<?php echo $tables[$i][0];?>" name="cb_<?php echo $tables[$i][0]
|
656 |
<?php echo $tables[$i][0];?></span></div>
|
657 |
<?php
|
658 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimize Database after Deleting Revisions
|
4 |
+
* @version 3.4.1
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Optimize Database after Deleting Revisions
|
9 |
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 |
+
Version: 3.4.1
|
13 |
*/
|
14 |
|
15 |
+
$odb_version = '3.4.1';
|
16 |
+
$odb_release_date = '04/26/2015';
|
17 |
|
18 |
// v3.3 - MULTISITE
|
19 |
$odb_ms_prefixes = array();
|
652 |
if($excluded == 'excluded') $cb_checked = ' checked';
|
653 |
?>
|
654 |
<div class="odb-options-table<?php echo $class;?>" title="<?php echo $tables[$i][0];?>">
|
655 |
+
<input id="cb_<?php echo $tables[$i][0];?>" name="cb_<?php echo $tables[$i][0];?>" type="checkbox" value="1"<?php echo $cb_checked; ?> />
|
656 |
<?php echo $tables[$i][0];?></span></div>
|
657 |
<?php
|
658 |
}
|