WP-Paginate - Version 1.2.3

Version Description

  • Fixed deprecated parameter to the WordPress add_options_page() function
Download this release

Release Info

Developer emartin24
Plugin Icon 128x128 WP-Paginate
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

Files changed (2) hide show
  1. readme.txt +10 -2
  2. wp-paginate.php +5 -5
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: emartin24
3
  Donate link: http://www.ericmmartin.com/donate/
4
  Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
5
  Requires at least: 2.2.0 (2.7.0 for comments pagination)
6
- Tested up to: 3.0.1
7
- Stable tag: 1.2.2
8
 
9
  WP-Paginate is a simple and flexible pagination plugin which provides users with better navigation on your WordPress site.
10
 
@@ -107,8 +107,16 @@ This allows you to use the `.wp-paginate-comments` styles, already in `wp-pagina
107
  1. An example of the WP-Paginate display using the default options and styling
108
  2. The WP-Paginate admin settings page
109
 
 
 
 
 
 
110
  == Changelog ==
111
 
 
 
 
112
  = 1.2.2 =
113
  * Fixed a XSS vulnerability reported by Andreas Schobel (@aschobel)
114
 
3
  Donate link: http://www.ericmmartin.com/donate/
4
  Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
5
  Requires at least: 2.2.0 (2.7.0 for comments pagination)
6
+ Tested up to: 3.1
7
+ Stable tag: 1.2.3
8
 
9
  WP-Paginate is a simple and flexible pagination plugin which provides users with better navigation on your WordPress site.
10
 
107
  1. An example of the WP-Paginate display using the default options and styling
108
  2. The WP-Paginate admin settings page
109
 
110
+
111
+ == Upgrade Notice ==
112
+
113
+ N/A
114
+
115
  == Changelog ==
116
 
117
+ = 1.2.3 =
118
+ * Fixed deprecated parameter to the WordPress add_options_page() function
119
+
120
  = 1.2.2 =
121
  * Fixed a XSS vulnerability reported by Andreas Schobel (@aschobel)
122
 
wp-paginate.php CHANGED
@@ -4,12 +4,12 @@ Plugin Name: WP-Paginate
4
  Plugin URI: http://www.ericmmartin.com/projects/wp-paginate/
5
  Description: A simple and flexible pagination plugin for WordPress posts and comments.
6
  Author: Eric Martin
7
- Version: 1.2.2
8
  Author URI: http://www.ericmmartin.com
9
- Revision: $Id: wp-paginate.php 315138 2010-11-24 04:55:42Z emartin24 $
10
  */
11
 
12
- /* Copyright 2010 Eric Martin (eric@ericmmartin.com)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License as published by
@@ -43,7 +43,7 @@ if (!class_exists('WPPaginate')) {
43
  /**
44
  * @var string The plugin version
45
  */
46
- var $version = '1.2.2';
47
 
48
  /**
49
  * @var string The options string name for this plugin
@@ -256,7 +256,7 @@ if (!class_exists('WPPaginate')) {
256
  * @desc Adds the options subpanel
257
  */
258
  function admin_menu_link() {
259
- add_options_page('WP-Paginate', 'WP-Paginate', 10, basename(__FILE__), array(&$this, 'admin_options_page'));
260
  add_filter('plugin_action_links_' . plugin_basename(__FILE__), array(&$this, 'filter_plugin_actions'), 10, 2 );
261
  }
262
 
4
  Plugin URI: http://www.ericmmartin.com/projects/wp-paginate/
5
  Description: A simple and flexible pagination plugin for WordPress posts and comments.
6
  Author: Eric Martin
7
+ Version: 1.2.3
8
  Author URI: http://www.ericmmartin.com
9
+ Revision: $Id: wp-paginate.php 358882 2011-03-11 18:39:08Z emartin24 $
10
  */
11
 
12
+ /* Copyright 2011 Eric Martin (eric@ericmmartin.com)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License as published by
43
  /**
44
  * @var string The plugin version
45
  */
46
+ var $version = '1.2.3';
47
 
48
  /**
49
  * @var string The options string name for this plugin
256
  * @desc Adds the options subpanel
257
  */
258
  function admin_menu_link() {
259
+ add_options_page('WP-Paginate', 'WP-Paginate', 'manage_options', basename(__FILE__), array(&$this, 'admin_options_page'));
260
  add_filter('plugin_action_links_' . plugin_basename(__FILE__), array(&$this, 'filter_plugin_actions'), 10, 2 );
261
  }
262