Plugin Directory

Changeset 841208


Ignore:
Timestamp:
01/19/2014 09:05:48 AM (12 years ago)
Author:
GeekPress
Message:

tagging version 2.1.5

Location:
simple-pagination
Files:
2 edited
3 copied

Legend:

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

    r836626 r841208  
    55Requires at least: 2.7
    66Tested up to: 3.8
    7 Stable tag: 2.1.4.1
     7Stable tag: 2.1.5
    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.5 =
     70
     71* Fixed double // in CSS file URL
     72* Fixed Notice: Undefined variable: dots in /wp-content/plugins/simple-pagination/simple-pagination.php on line 874
     73
    6974= 2.1.4.1 =
    7075
  • simple-pagination/tags/2.1.5/simple-pagination.php

    r836626 r841208  
    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.4.1
     8Version: 2.1.5
    99Author: GeekPress
    1010Author URI: http://www.geekpress.fr/
     
    2929
    3030// Define contants
    31 define( 'SP_VERSION' , '2.1.4.1' );
     31define( 'SP_VERSION' , '2.1.5' );
    3232define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') );
    33 
    3433
    3534class Simple_Pagination {
     
    117116    function load_css()
    118117    {
    119         wp_register_style('simple-pagination-css', SP_URL .'/css/'. $this->options['css_file'] .'.css', array(), SP_VERSION, 'screen');
     118        wp_register_style('simple-pagination-css', SP_URL .'css/'. $this->options['css_file'] .'.css', array(), SP_VERSION, 'screen');
    120119        wp_enqueue_style( 'simple-pagination-css' );
    121120    }
     
    857856        endif;
    858857
    859 
     858        $dots = false;
    860859        for ( $n = 1; $n <= $total; $n++ ) :
    861860                $n_display = number_format_i18n($n);
  • simple-pagination/trunk/readme.txt

    r836626 r841208  
    55Requires at least: 2.7
    66Tested up to: 3.8
    7 Stable tag: 2.1.4.1
     7Stable tag: 2.1.5
    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.5 =
     70
     71* Fixed double // in CSS file URL
     72* Fixed Notice: Undefined variable: dots in /wp-content/plugins/simple-pagination/simple-pagination.php on line 874
     73
    6974= 2.1.4.1 =
    7075
  • simple-pagination/trunk/simple-pagination.php

    r836626 r841208  
    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.4.1
     8Version: 2.1.5
    99Author: GeekPress
    1010Author URI: http://www.geekpress.fr/
     
    2929
    3030// Define contants
    31 define( 'SP_VERSION' , '2.1.4.1' );
     31define( 'SP_VERSION' , '2.1.5' );
    3232define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') );
    33 
    3433
    3534class Simple_Pagination {
     
    117116    function load_css()
    118117    {
    119         wp_register_style('simple-pagination-css', SP_URL .'/css/'. $this->options['css_file'] .'.css', array(), SP_VERSION, 'screen');
     118        wp_register_style('simple-pagination-css', SP_URL .'css/'. $this->options['css_file'] .'.css', array(), SP_VERSION, 'screen');
    120119        wp_enqueue_style( 'simple-pagination-css' );
    121120    }
     
    857856        endif;
    858857
    859 
     858        $dots = false;
    860859        for ( $n = 1; $n <= $total; $n++ ) :
    861860                $n_display = number_format_i18n($n);
Note: See TracChangeset for help on using the changeset viewer.