Changeset 845099
- Timestamp:
- 01/25/2014 09:00:24 AM (12 years ago)
- Location:
- simple-pagination
- Files:
-
- 2 edited
- 3 copied
-
tags/2.1.6 (copied) (copied from simple-pagination/trunk)
-
tags/2.1.6/readme.txt (copied) (copied from simple-pagination/trunk/readme.txt) (2 diffs)
-
tags/2.1.6/simple-pagination.php (copied) (copied from simple-pagination/trunk/simple-pagination.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/simple-pagination.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-pagination/tags/2.1.6/readme.txt
r841208 r845099 5 5 Requires at least: 2.7 6 6 Tested up to: 3.8 7 Stable tag: 2.1. 57 Stable tag: 2.1.6 8 8 9 9 Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress. … … 67 67 == Changelog == 68 68 69 = 2.1.6 = 70 71 * Fixed bug with URL pagination between 10 to 19 72 69 73 = 2.1.5 = 70 74 -
simple-pagination/tags/2.1.6/simple-pagination.php
r841208 r845099 6 6 Plugin URI: http://wordpress.org/plugin/simple-pagination/ 7 7 Description: Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress. 8 Version: 2.1. 58 Version: 2.1.6 9 9 Author: GeekPress 10 10 Author URI: http://www.geekpress.fr/ … … 29 29 30 30 // Define contants 31 define( 'SP_VERSION' , '2.1. 5' );31 define( 'SP_VERSION' , '2.1.6' ); 32 32 define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') ); 33 33 … … 929 929 $link = str_replace('%_%', "?page=%#%", $this->base); 930 930 $link = str_replace('%#%', $page, $link); 931 $link = str_replace( $wp_rewrite->pagination_base . '/1','', $link); 932 $link = str_replace( $wp_rewrite->pagination_base . '/1','', $link); 931 $link = str_replace( $wp_rewrite->pagination_base . '/1/','', $link ); 933 932 $link = str_replace('?paged=1','', $link); 934 933 -
simple-pagination/trunk/readme.txt
r841208 r845099 5 5 Requires at least: 2.7 6 6 Tested up to: 3.8 7 Stable tag: 2.1. 57 Stable tag: 2.1.6 8 8 9 9 Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress. … … 67 67 == Changelog == 68 68 69 = 2.1.6 = 70 71 * Fixed bug with URL pagination between 10 to 19 72 69 73 = 2.1.5 = 70 74 -
simple-pagination/trunk/simple-pagination.php
r841208 r845099 6 6 Plugin URI: http://wordpress.org/plugin/simple-pagination/ 7 7 Description: Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress. 8 Version: 2.1. 58 Version: 2.1.6 9 9 Author: GeekPress 10 10 Author URI: http://www.geekpress.fr/ … … 29 29 30 30 // Define contants 31 define( 'SP_VERSION' , '2.1. 5' );31 define( 'SP_VERSION' , '2.1.6' ); 32 32 define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') ); 33 33 … … 929 929 $link = str_replace('%_%', "?page=%#%", $this->base); 930 930 $link = str_replace('%#%', $page, $link); 931 $link = str_replace( $wp_rewrite->pagination_base . '/1','', $link); 932 $link = str_replace( $wp_rewrite->pagination_base . '/1','', $link); 931 $link = str_replace( $wp_rewrite->pagination_base . '/1/','', $link ); 933 932 $link = str_replace('?paged=1','', $link); 934 933
Note: See TracChangeset
for help on using the changeset viewer.