Version Description
- Updated jQuery function calls
- Replaced old color picker with newer version
Download this release
Release Info
Developer | AlanP57 |
Plugin | WP-Paginate |
Version | 2.1.5 |
Comparing to | |
See all releases |
Code changes from version 2.1.4 to 2.1.5
- js/wp-paginate.js +2 -2
- readme.txt +6 -2
- wp-paginate.php +2 -2
js/wp-paginate.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
jQuery(document).ready(function(){
|
2 |
|
3 |
-
jQuery("#wpp-review-already, #wpp-dismiss"
|
4 |
jQuery.ajax({
|
5 |
type: "POST",
|
6 |
async: true,
|
@@ -15,7 +15,7 @@ jQuery(document).ready(function(){
|
|
15 |
});
|
16 |
});
|
17 |
|
18 |
-
jQuery("#wpp-review-later"
|
19 |
jQuery.ajax({
|
20 |
type: "POST",
|
21 |
async: true,
|
1 |
jQuery(document).ready(function(){
|
2 |
|
3 |
+
jQuery(document).on("click", "#wpp-review-already, #wpp-dismiss", function () {
|
4 |
jQuery.ajax({
|
5 |
type: "POST",
|
6 |
async: true,
|
15 |
});
|
16 |
});
|
17 |
|
18 |
+
jQuery(document).on("click", "#wpp-review-later", function () {
|
19 |
jQuery.ajax({
|
20 |
type: "POST",
|
21 |
async: true,
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: maxfoundry, emartin24, AlanP57
|
3 |
Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
|
4 |
Requires at least: 2.6.0 (2.7.0 for comments pagination)
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 2.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -161,6 +161,10 @@ Example (also applies to `wp_paginate_comments()`):
|
|
161 |
When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.
|
162 |
|
163 |
== Changelog ==
|
|
|
|
|
|
|
|
|
164 |
= 2.1.4 =
|
165 |
* Fixed potential XSS Vulnerabilities
|
166 |
|
2 |
Contributors: maxfoundry, emartin24, AlanP57
|
3 |
Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
|
4 |
Requires at least: 2.6.0 (2.7.0 for comments pagination)
|
5 |
+
Tested up to: 5.7
|
6 |
+
Stable tag: 2.1.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
161 |
When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.
|
162 |
|
163 |
== Changelog ==
|
164 |
+
= 2.1.5 =
|
165 |
+
* Updated jQuery function calls
|
166 |
+
* Replaced old color picker with newer version
|
167 |
+
|
168 |
= 2.1.4 =
|
169 |
* Fixed potential XSS Vulnerabilities
|
170 |
|
wp-paginate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP-Paginate
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-paginate/
|
5 |
Description: A simple and flexible pagination plugin for WordPress posts and comments.
|
6 |
-
Version: 2.1.
|
7 |
Author: Max Foundry
|
8 |
Author URI: http://maxfoundry.com
|
9 |
Text Domain: 'wp-paginate'
|
@@ -60,7 +60,7 @@ if (!class_exists('WPPaginate')) {
|
|
60 |
/**
|
61 |
* @var string The plugin version
|
62 |
*/
|
63 |
-
public $version = '2.1.
|
64 |
|
65 |
/**
|
66 |
* @var string The options string name for this plugin
|
3 |
Plugin Name: WP-Paginate
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-paginate/
|
5 |
Description: A simple and flexible pagination plugin for WordPress posts and comments.
|
6 |
+
Version: 2.1.5
|
7 |
Author: Max Foundry
|
8 |
Author URI: http://maxfoundry.com
|
9 |
Text Domain: 'wp-paginate'
|
60 |
/**
|
61 |
* @var string The plugin version
|
62 |
*/
|
63 |
+
public $version = '2.1.5';
|
64 |
|
65 |
/**
|
66 |
* @var string The options string name for this plugin
|