Revision Control - Version 1.9.2

Version Description

Download this release

Release Info

Developer dd32
Plugin Icon wp plugin Revision Control
Version 1.9.2
Comparing to
See all releases

Code changes from version 1.9.1 to 1.9.2

Files changed (2) hide show
  1. readme.txt +8 -2
  2. 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.1
7
 
8
  Revision Control allows finer control over the Post Revision system included with WordPress 2.6
9
 
@@ -57,6 +57,12 @@ The plugin also allows the deletion of specific revisions via the Revisions post
57
  * Introduce DD32's common data class, Adds Update version changelog functionality
58
  * WP 2.7 compatibility, This is mainly a maintanence release until version 2.0 is fully finalised.
59
 
 
 
 
 
 
 
60
  == Screenshots ==
61
 
62
  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.1
6
+ Stable tag: 1.9.2
7
 
8
  Revision Control allows finer control over the Post Revision system included with WordPress 2.6
9
 
57
  * Introduce DD32's common data class, Adds Update version changelog functionality
58
  * WP 2.7 compatibility, This is mainly a maintanence release until version 2.0 is fully finalised.
59
 
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
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.1
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('admin_init', 'rc_admin_init');
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 rc_admin_init() {
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.2
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_menu', 'rc_admin_menu');
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_menu() {
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.2';
400
 
401
  function revision_control() {
402
  //Set the directory of the plugin: