Version Description
- Ok, So last .2 didnt work.
=
Download this release
Release Info
Developer | dd32 |
Plugin | Revision Control |
Version | 1.9.3 |
Comparing to | |
See all releases |
Code changes from version 1.9.2 to 1.9.3
- readme.txt +6 -3
- revision-control.php +4 -4
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: dd32
|
3 |
Tags: 2.7, 2.6, revisions, post, admin
|
4 |
Requires at least: 2.7
|
5 |
-
Tested up to: 2.8
|
6 |
-
Stable tag: 1.9.
|
7 |
|
8 |
Revision Control allows finer control over the Post Revision system included with WordPress 2.6
|
9 |
|
@@ -60,9 +60,12 @@ The plugin also allows the deletion of specific revisions via the Revisions post
|
|
60 |
= 1.9.1 =
|
61 |
* Small bugfixes
|
62 |
|
63 |
-
= 1.9.2
|
64 |
* WordPress 2.8.1 compatibility
|
65 |
|
|
|
|
|
|
|
66 |
== Screenshots ==
|
67 |
|
68 |
1. The Global Settings
|
2 |
Contributors: dd32
|
3 |
Tags: 2.7, 2.6, revisions, post, admin
|
4 |
Requires at least: 2.7
|
5 |
+
Tested up to: 2.8
|
6 |
+
Stable tag: 1.9.3
|
7 |
|
8 |
Revision Control allows finer control over the Post Revision system included with WordPress 2.6
|
9 |
|
60 |
= 1.9.1 =
|
61 |
* Small bugfixes
|
62 |
|
63 |
+
= 1.9.2 =
|
64 |
* WordPress 2.8.1 compatibility
|
65 |
|
66 |
+
= 1.9.3 =
|
67 |
+
* Ok, So last .2 didnt work.
|
68 |
+
|
69 |
== Screenshots ==
|
70 |
|
71 |
1. The Global Settings
|
revision-control.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Revision Control
|
|
4 |
Plugin URI: http://dd32.id.au/wordpress-plugins/revision-control/
|
5 |
Description: Allows finer control over the number of Revisions stored on a global & per-post/page basis.
|
6 |
Author: Dion Hulse
|
7 |
-
Version: 1.9.
|
8 |
*/
|
9 |
|
10 |
/**
|
@@ -23,7 +23,7 @@ function rc_loaded() {
|
|
23 |
|
24 |
//Ok, Time to add Admin related hooks :)
|
25 |
add_action('do_meta_boxes', 'rc_meta_box_manip', 15, 2);
|
26 |
-
add_action('
|
27 |
|
28 |
//Now the Defines.
|
29 |
rc_define();
|
@@ -32,7 +32,7 @@ function rc_loaded() {
|
|
32 |
/**
|
33 |
* Add the Menu items. DOES NOT USE THE API; I'd like a bit better location than the end of the list.
|
34 |
*/
|
35 |
-
function
|
36 |
global $submenu;
|
37 |
|
38 |
//Hack into the Menu ordering
|
@@ -396,7 +396,7 @@ class revision_control {
|
|
396 |
var $dd32_requires = 3;
|
397 |
var $basename = '';
|
398 |
var $folder = '';
|
399 |
-
var $version = '1.9
|
400 |
|
401 |
function revision_control() {
|
402 |
//Set the directory of the plugin:
|
4 |
Plugin URI: http://dd32.id.au/wordpress-plugins/revision-control/
|
5 |
Description: Allows finer control over the number of Revisions stored on a global & per-post/page basis.
|
6 |
Author: Dion Hulse
|
7 |
+
Version: 1.9.1
|
8 |
*/
|
9 |
|
10 |
/**
|
23 |
|
24 |
//Ok, Time to add Admin related hooks :)
|
25 |
add_action('do_meta_boxes', 'rc_meta_box_manip', 15, 2);
|
26 |
+
add_action('admin_init', 'rc_admin_init');
|
27 |
|
28 |
//Now the Defines.
|
29 |
rc_define();
|
32 |
/**
|
33 |
* Add the Menu items. DOES NOT USE THE API; I'd like a bit better location than the end of the list.
|
34 |
*/
|
35 |
+
function rc_admin_init() {
|
36 |
global $submenu;
|
37 |
|
38 |
//Hack into the Menu ordering
|
396 |
var $dd32_requires = 3;
|
397 |
var $basename = '';
|
398 |
var $folder = '';
|
399 |
+
var $version = '1.9';
|
400 |
|
401 |
function revision_control() {
|
402 |
//Set the directory of the plugin:
|