Slideshow - Version 2.1.10

Version Description

  • Fixed: Slideshow widget form now is compatible with older versions of PHP, that didn't recognize a null value as a set value.
Download this release

Release Info

Developer stefanboonstra
Plugin Icon 128x128 Slideshow
Version 2.1.10
Comparing to
See all releases

Code changes from version 2.1.9 to 2.1.10

classes/SlideshowPluginWidget.php CHANGED
@@ -3,7 +3,7 @@
3
  * Class SlideshowPluginWidget allows showing one of your slideshows in your widget area.
4
  *
5
  * @author: Stefan Boonstra
6
- * @version: 23-09-12
7
  */
8
  class SlideshowPluginWidget extends WP_Widget {
9
 
@@ -82,7 +82,8 @@ class SlideshowPluginWidget extends WP_Widget {
82
 
83
  // Get slideshows
84
  $slideshows = get_posts(array(
85
- 'numberposts' => null,
 
86
  'post_type' => SlideshowPluginPostType::$postType
87
  ));
88
 
3
  * Class SlideshowPluginWidget allows showing one of your slideshows in your widget area.
4
  *
5
  * @author: Stefan Boonstra
6
+ * @version: 04-10-12
7
  */
8
  class SlideshowPluginWidget extends WP_Widget {
9
 
82
 
83
  // Get slideshows
84
  $slideshows = get_posts(array(
85
+ 'numberposts' => -1,
86
+ 'offset',
87
  'post_type' => SlideshowPluginPostType::$postType
88
  ));
89
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://stefanboonstra.com/donate-to-slideshow/
5
  Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.4.2
8
- Stable tag: 2.1.9
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -107,6 +107,9 @@ slideshow may not be styled.
107
  * Multiple slideshows can now be shown with each its separate styling.
108
  * Users can now search insertable images by post id.
109
 
 
 
 
110
  = 2.1.9 =
111
  * Fixed: Not all admin themes support scripts in the admin footer, admin scripts are moved to the header.
112
 
5
  Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.4.2
8
+ Stable tag: 2.1.10
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
107
  * Multiple slideshows can now be shown with each its separate styling.
108
  * Users can now search insertable images by post id.
109
 
110
+ = 2.1.10 =
111
+ * Fixed: Slideshow widget form now is compatible with older versions of PHP, that didn't recognize a null value as a set value.
112
+
113
  = 2.1.9 =
114
  * Fixed: Not all admin themes support scripts in the admin footer, admin scripts are moved to the header.
115
 
slideshow.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: This plugin offers a slideshow that is easily deployable in your website. Add any image that has already been uploaded to add to your slideshow. Options and styles are customizable for every single slideshow on your website.
6
- Version: 2.1.9
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
@@ -21,7 +21,7 @@
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
- static $version = '2.1.9';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: This plugin offers a slideshow that is easily deployable in your website. Add any image that has already been uploaded to add to your slideshow. Options and styles are customizable for every single slideshow on your website.
6
+ Version: 2.1.10
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
+ static $version = '2.1.10';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to