Changeset 841208
- Timestamp:
- 01/19/2014 09:05:48 AM (12 years ago)
- Location:
- simple-pagination
- Files:
-
- 2 edited
- 3 copied
-
tags/2.1.5 (copied) (copied from simple-pagination/trunk)
-
tags/2.1.5/readme.txt (copied) (copied from simple-pagination/trunk/readme.txt) (2 diffs)
-
tags/2.1.5/simple-pagination.php (copied) (copied from simple-pagination/trunk/simple-pagination.php) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/simple-pagination.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-pagination/tags/2.1.5/readme.txt
r836626 r841208 5 5 Requires at least: 2.7 6 6 Tested up to: 3.8 7 Stable tag: 2.1. 4.17 Stable tag: 2.1.5 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.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 69 74 = 2.1.4.1 = 70 75 -
simple-pagination/tags/2.1.5/simple-pagination.php
r836626 r841208 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. 4.18 Version: 2.1.5 9 9 Author: GeekPress 10 10 Author URI: http://www.geekpress.fr/ … … 29 29 30 30 // Define contants 31 define( 'SP_VERSION' , '2.1. 4.1' );31 define( 'SP_VERSION' , '2.1.5' ); 32 32 define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') ); 33 34 33 35 34 class Simple_Pagination { … … 117 116 function load_css() 118 117 { 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'); 120 119 wp_enqueue_style( 'simple-pagination-css' ); 121 120 } … … 857 856 endif; 858 857 859 858 $dots = false; 860 859 for ( $n = 1; $n <= $total; $n++ ) : 861 860 $n_display = number_format_i18n($n); -
simple-pagination/trunk/readme.txt
r836626 r841208 5 5 Requires at least: 2.7 6 6 Tested up to: 3.8 7 Stable tag: 2.1. 4.17 Stable tag: 2.1.5 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.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 69 74 = 2.1.4.1 = 70 75 -
simple-pagination/trunk/simple-pagination.php
r836626 r841208 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. 4.18 Version: 2.1.5 9 9 Author: GeekPress 10 10 Author URI: http://www.geekpress.fr/ … … 29 29 30 30 // Define contants 31 define( 'SP_VERSION' , '2.1. 4.1' );31 define( 'SP_VERSION' , '2.1.5' ); 32 32 define( 'SP_URL' , plugins_url(plugin_basename(dirname(__FILE__)).'/') ); 33 34 33 35 34 class Simple_Pagination { … … 117 116 function load_css() 118 117 { 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'); 120 119 wp_enqueue_style( 'simple-pagination-css' ); 121 120 } … … 857 856 endif; 858 857 859 858 $dots = false; 860 859 for ( $n = 1; $n <= $total; $n++ ) : 861 860 $n_display = number_format_i18n($n);
Note: See TracChangeset
for help on using the changeset viewer.