Plugin Directory

Changeset 546162


Ignore:
Timestamp:
05/19/2012 10:19:59 AM (14 years ago)
Author:
GeekPress
Message:

tagging version 2.1.3

Location:
simple-pagination
Files:
2 edited
12 copied

Legend:

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

    r529201 r546162  
    44Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TSGWZURGHBRCA
    55Requires at least: 2.7
    6 Tested up to: 3.3.1
    7 Stable tag: 2.1.2
     6Tested up to: 3.3.2
     7Stable tag: 2.1.3
    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.3 =
     70* Fixed a bug with duplicate content on the first page
     71
    6972= 2.1.2 =
    7073* Fixed a bug when you do a search with multiple words
  • simple-pagination/tags/2.1.3/simple-pagination.php

    r524362 r546162  
    55Plugin URI: http://www.geekpress.fr/wordpress/extension/simple-pagination-pagination-avancee-wordpress-622/
    66Description: Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress.
    7 Version: 2.1.2
     7Version: 2.1.3
    88Author: GeekPress
    99Author URI: http://www.geekpress.fr/
     
    2828
    2929// Define contants
    30 define( 'SP_VERSION' , '2.1' );
     30define( 'SP_VERSION' , '2.1.3' );
    3131define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') );
    3232
     
    932932        $link = str_replace('%_%', "?page=%#%", $this->base);
    933933        $link = str_replace('%#%', $page, $link);
     934        $link = str_replace('page/1/','', $link);
     935        $link = str_replace('?paged=1','', $link);
     936       
    934937        if ( $this->add_args )
    935938            $link = add_query_arg( $this->add_args, $link );
  • simple-pagination/trunk/readme.txt

    r529201 r546162  
    44Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TSGWZURGHBRCA
    55Requires at least: 2.7
    6 Tested up to: 3.3.1
    7 Stable tag: 2.1.2
     6Tested up to: 3.3.2
     7Stable tag: 2.1.3
    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.3 =
     70* Fixed a bug with duplicate content on the first page
     71
    6972= 2.1.2 =
    7073* Fixed a bug when you do a search with multiple words
  • simple-pagination/trunk/simple-pagination.php

    r524362 r546162  
    55Plugin URI: http://www.geekpress.fr/wordpress/extension/simple-pagination-pagination-avancee-wordpress-622/
    66Description: Simple Pagination allows to set up an advanced pagination for posts and comments. You have an easier navigation on your WordPress.
    7 Version: 2.1.2
     7Version: 2.1.3
    88Author: GeekPress
    99Author URI: http://www.geekpress.fr/
     
    2828
    2929// Define contants
    30 define( 'SP_VERSION' , '2.1' );
     30define( 'SP_VERSION' , '2.1.3' );
    3131define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') );
    3232
     
    932932        $link = str_replace('%_%', "?page=%#%", $this->base);
    933933        $link = str_replace('%#%', $page, $link);
     934        $link = str_replace('page/1/','', $link);
     935        $link = str_replace('?paged=1','', $link);
     936       
    934937        if ( $this->add_args )
    935938            $link = add_query_arg( $this->add_args, $link );
Note: See TracChangeset for help on using the changeset viewer.