Slide Anything – Responsive Content / HTML Slider and Carousel - Version 2.3.43

Version Description

  • Fixed a code syntax error in the security fix I did in release 2.3.41 (oops!)
Download this release

Release Info

Developer simonpedge
Plugin Icon 128x128 Slide Anything – Responsive Content / HTML Slider and Carousel
Version 2.3.43
Comparing to
See all releases

Code changes from version 2.3.42 to 2.3.43

php/slide-anything-admin.php CHANGED
@@ -3058,7 +3058,7 @@ function duplicate_sa_slider_post_as_draft() {
3058
  if ($meta_key == '_wp_old_slug') continue;
3059
  $meta_value = addslashes($meta_info->meta_value);
3060
  $sql_query_sel[] = $wpdb->prepare(
3061
- "SELECT %d, %s, $s",
3062
  $new_post_id,
3063
  $meta_key,
3064
  $meta_value
3058
  if ($meta_key == '_wp_old_slug') continue;
3059
  $meta_value = addslashes($meta_info->meta_value);
3060
  $sql_query_sel[] = $wpdb->prepare(
3061
+ "SELECT %d, %s, %s",
3062
  $new_post_id,
3063
  $meta_key,
3064
  $meta_value
readme.txt CHANGED
@@ -98,6 +98,9 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
98
 
99
  == Changelog ==
100
 
 
 
 
101
  = 2.3.42 =
102
  * Added a new option 'Don't use CSS IDs for slides' - when checked CSS Classes will be used instead of CSS IDs to identify each slide container.
103
 
@@ -746,3 +749,6 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
746
 
747
  = 2.3.42 =
748
  * Added a new option 'Don't use CSS IDs for slides' - when checked CSS Classes will be used instead of CSS IDs to identify each slide container.
 
 
 
98
 
99
  == Changelog ==
100
 
101
+ = 2.3.43 =
102
+ * Fixed a code syntax error in the security fix I did in release 2.3.41 (oops!)
103
+
104
  = 2.3.42 =
105
  * Added a new option 'Don't use CSS IDs for slides' - when checked CSS Classes will be used instead of CSS IDs to identify each slide container.
106
 
749
 
750
  = 2.3.42 =
751
  * Added a new option 'Don't use CSS IDs for slides' - when checked CSS Classes will be used instead of CSS IDs to identify each slide container.
752
+
753
+ = 2.3.43 =
754
+ * Fixed a code syntax error in the security fix I did in release 2.3.41 (oops!)
slide-anything.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wordpress.org/plugins/slide-anything/
5
  * Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
6
  * Author: Simon Edge
7
- * Version: 2.3.42
8
  * License: GPLv2 or later
9
  */
10
 
4
  * Plugin URI: https://wordpress.org/plugins/slide-anything/
5
  * Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
6
  * Author: Simon Edge
7
+ * Version: 2.3.43
8
  * License: GPLv2 or later
9
  */
10