Plugin Directory

Changeset 2786235


Ignore:
Timestamp:
09/17/2022 06:00:03 AM (4 years ago)
Author:
simonpedge
Message:

Version 2.4.7

Location:
slide-anything/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • slide-anything/trunk/php/slide-anything-admin.php

    r2769451 r2786235  
    25652565            $slide1_link_target  = '';
    25662566            if ( isset( $_POST[ 'sa_slide' . $slide1 . '_content' ] ) ) {
    2567                 $slide1_content = balanceTags( sanitize_text_field( wp_unslash( $_POST[ 'sa_slide' . $slide1 . '_content' ] ) ), true );
     2567                $slide1_content = wp_kses_post( wp_unslash( $_POST[ 'sa_slide' . $slide1 . '_content' ] ) );
     2568                // $slide1_content = balanceTags( sanitize_text_field( wp_unslash( $_POST[ 'sa_slide' . $slide1 . '_content' ] ) ), true );
    25682569            }
    25692570            if ( isset( $_POST[ 'sa_slide' . $slide1 . '_image_id' ] ) ) {
     
    26372638            $slide2_link_target  = '';
    26382639            if ( isset( $_POST[ 'sa_slide' . $slide2 . '_content' ] ) ) {
    2639                 $slide2_content = balanceTags( sanitize_text_field( wp_unslash( $_POST[ 'sa_slide' . $slide2 . '_content' ] ) ), true );
     2640                $slide2_content = wp_kses_post( wp_unslash( $_POST[ 'sa_slide' . $slide2 . '_content' ] ) );
     2641                // $slide2_content = balanceTags( sanitize_text_field( wp_unslash( $_POST[ 'sa_slide' . $slide2 . '_content' ] ) ), true );
    26402642            }
    26412643            if ( isset( $_POST[ 'sa_slide' . $slide2 . '_image_id' ] ) ) {
  • slide-anything/trunk/readme.txt

    r2769451 r2786235  
    55Requires at least: 4.0
    66Tested up to: 6.0
    7 Stable tag: 2.4.6
     7Stable tag: 2.4.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9191== Changelog ==
    9292
     93= 2.4.7 =
     94* Fixed a bug where the slide 'MOVE UP' button strips out some content.
     95
    9396= 2.4.6 =
    9497* Removed the 'Slider Preview' feature as it was causing issues on some installations of WordPress.
     
    811814= 2.4.6 =
    812815* Removed the 'Slider Preview' feature as it was causing issues on some installations of WordPress.
     816
     817= 2.4.7 =
     818* Fixed a bug where the slide 'MOVE UP' button strips out some content.
  • slide-anything/trunk/slide-anything.php

    r2769451 r2786235  
    44 * Plugin URI: https://wordpress.org/plugins/slide-anything/
    55 * 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  * Version: 2.4.6
     6 * Version: 2.4.7
    77 *
    88 * @package     WordPress_Slide_Anything
Note: See TracChangeset for help on using the changeset viewer.