Plugin Directory

Changeset 845099


Ignore:
Timestamp:
01/25/2014 09:00:24 AM (12 years ago)
Author:
GeekPress
Message:

tagging version 2.1.6

Location:
simple-pagination
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • simple-pagination/tags/2.1.6/readme.txt

    r841208 r845099  
    55Requires at least: 2.7
    66Tested up to: 3.8
    7 Stable tag: 2.1.5
     7Stable tag: 2.1.6
    88
    99Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress.
     
    6767== Changelog ==
    6868
     69= 2.1.6 =
     70
     71* Fixed bug with URL pagination between 10 to 19
     72
    6973= 2.1.5 =
    7074
  • simple-pagination/tags/2.1.6/simple-pagination.php

    r841208 r845099  
    66Plugin URI: http://wordpress.org/plugin/simple-pagination/
    77Description: 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.5
     8Version: 2.1.6
    99Author: GeekPress
    1010Author URI: http://www.geekpress.fr/
     
    2929
    3030// Define contants
    31 define( 'SP_VERSION' , '2.1.5' );
     31define( 'SP_VERSION' , '2.1.6' );
    3232define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') );
    3333
     
    929929        $link = str_replace('%_%', "?page=%#%", $this->base);
    930930        $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 );
    933932        $link = str_replace('?paged=1','', $link);
    934933
  • simple-pagination/trunk/readme.txt

    r841208 r845099  
    55Requires at least: 2.7
    66Tested up to: 3.8
    7 Stable tag: 2.1.5
     7Stable tag: 2.1.6
    88
    99Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress.
     
    6767== Changelog ==
    6868
     69= 2.1.6 =
     70
     71* Fixed bug with URL pagination between 10 to 19
     72
    6973= 2.1.5 =
    7074
  • simple-pagination/trunk/simple-pagination.php

    r841208 r845099  
    66Plugin URI: http://wordpress.org/plugin/simple-pagination/
    77Description: 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.5
     8Version: 2.1.6
    99Author: GeekPress
    1010Author URI: http://www.geekpress.fr/
     
    2929
    3030// Define contants
    31 define( 'SP_VERSION' , '2.1.5' );
     31define( 'SP_VERSION' , '2.1.6' );
    3232define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') );
    3333
     
    929929        $link = str_replace('%_%', "?page=%#%", $this->base);
    930930        $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 );
    933932        $link = str_replace('?paged=1','', $link);
    934933
Note: See TracChangeset for help on using the changeset viewer.