Version Description
No Upgrade Notice available.
Download this release
Release Info
Developer | cageehv |
Plugin | Optimize Database after Deleting Revisions |
Version | 1.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.3.3 to 1.3.4
- readme.txt +4 -3
- rvg-optimize-db.php +7 -7
readme.txt
CHANGED
@@ -8,9 +8,9 @@ Tags: database, delete, revisions, optimize, post, posts, page, pages, clean up,
|
|
8 |
Author URI: http://cagewebdev.com
|
9 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
10 |
Requires at least: 2.0
|
11 |
-
Tested up to: 3.
|
12 |
-
Stable tag: 1.3.
|
13 |
-
Version: 1.3.
|
14 |
|
15 |
== Description ==
|
16 |
|
@@ -57,6 +57,7 @@ No Screenshots available.
|
|
57 |
<p><b>1.3.1</b> 10/07/2012 Minor changes</p>
|
58 |
<p><b>1.3.2</b> 11/14/2012 Shows more information about the optimized tables + other minor changes</p>
|
59 |
<p><b>1.3.3</b> 12/01/2012 Some layout changes</p>
|
|
|
60 |
|
61 |
== Frequently Asked Questions ==
|
62 |
|
8 |
Author URI: http://cagewebdev.com
|
9 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
10 |
Requires at least: 2.0
|
11 |
+
Tested up to: 3.5
|
12 |
+
Stable tag: 1.3.4
|
13 |
+
Version: 1.3.4
|
14 |
|
15 |
== Description ==
|
16 |
|
57 |
<p><b>1.3.1</b> 10/07/2012 Minor changes</p>
|
58 |
<p><b>1.3.2</b> 11/14/2012 Shows more information about the optimized tables + other minor changes</p>
|
59 |
<p><b>1.3.3</b> 12/01/2012 Some layout changes</p>
|
60 |
+
<p><b>1.3.4</b> 12/14/2012 Changed the buttons for WP 3.5</p>
|
61 |
|
62 |
== Frequently Asked Questions ==
|
63 |
|
rvg-optimize-db.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
-
$odb_version = '1.3.
|
3 |
-
$odb_release_date = '12/
|
4 |
/**
|
5 |
* @package Optimize Database after Deleting Revisions
|
6 |
-
* @version 1.3.
|
7 |
*/
|
8 |
/*
|
9 |
Plugin Name: Optimize Database after Deleting Revisions
|
10 |
Plugin URI: http://cagewebdev.com/index.php/optimize-database-after-deleting-revisions-wordpress-plugin/
|
11 |
Description: Optimizes the Wordpress Database after Deleting Revisions - <a href="options-general.php?page=rvg_odb_admin"><strong>plug in options</strong></a>
|
12 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
13 |
-
Version: 1.3.
|
14 |
Author URI: http://cagewebdev.com
|
15 |
*/
|
16 |
?>
|
@@ -144,7 +144,7 @@ if($rvg_wp_only == 'Y') $rvg_wp_only_checked = ' checked="checked"'; els
|
|
144 |
</fieldset>
|
145 |
</blockquote>
|
146 |
<p class="submit">
|
147 |
-
<input type='submit' name='info_update' value='Save Options' style="font-weight:bold;" />
|
148 |
</p>
|
149 |
</div>
|
150 |
</form>
|
@@ -208,9 +208,9 @@ if($_REQUEST['action'] != 'run')
|
|
208 |
{
|
209 |
?>
|
210 |
<p class="submit">
|
211 |
-
<input type=
|
212 |
|
213 |
-
<input class="button-primary" type=
|
214 |
</p>
|
215 |
<?php
|
216 |
}
|
1 |
<?php
|
2 |
+
$odb_version = '1.3.4';
|
3 |
+
$odb_release_date = '12/14/2012';
|
4 |
/**
|
5 |
* @package Optimize Database after Deleting Revisions
|
6 |
+
* @version 1.3.4
|
7 |
*/
|
8 |
/*
|
9 |
Plugin Name: Optimize Database after Deleting Revisions
|
10 |
Plugin URI: http://cagewebdev.com/index.php/optimize-database-after-deleting-revisions-wordpress-plugin/
|
11 |
Description: Optimizes the Wordpress Database after Deleting Revisions - <a href="options-general.php?page=rvg_odb_admin"><strong>plug in options</strong></a>
|
12 |
Author: Rolf van Gelder, Eindhoven, The Netherlands
|
13 |
+
Version: 1.3.4
|
14 |
Author URI: http://cagewebdev.com
|
15 |
*/
|
16 |
?>
|
144 |
</fieldset>
|
145 |
</blockquote>
|
146 |
<p class="submit">
|
147 |
+
<input class="button-primary button-large" type='submit' name='info_update' value='Save Options' style="font-weight:bold;" />
|
148 |
</p>
|
149 |
</div>
|
150 |
</form>
|
208 |
{
|
209 |
?>
|
210 |
<p class="submit">
|
211 |
+
<input class="button" type="button" name="change_options" value="Change Options" onclick="self.location='options-general.php?page=rvg_odb_admin'" style="font-weight:normal;" />
|
212 |
|
213 |
+
<input class="button-primary button-large" type="button" name="start_optimization" value="Start Optimization" onclick="self.location='tools.php?page=rvg-optimize-db.php&action=run'" style="font-weight:bold;" />
|
214 |
</p>
|
215 |
<?php
|
216 |
}
|