Changeset 2786235
- Timestamp:
- 09/17/2022 06:00:03 AM (4 years ago)
- Location:
- slide-anything/trunk
- Files:
-
- 3 edited
-
php/slide-anything-admin.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
slide-anything.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
slide-anything/trunk/php/slide-anything-admin.php
r2769451 r2786235 2565 2565 $slide1_link_target = ''; 2566 2566 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 ); 2568 2569 } 2569 2570 if ( isset( $_POST[ 'sa_slide' . $slide1 . '_image_id' ] ) ) { … … 2637 2638 $slide2_link_target = ''; 2638 2639 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 ); 2640 2642 } 2641 2643 if ( isset( $_POST[ 'sa_slide' . $slide2 . '_image_id' ] ) ) { -
slide-anything/trunk/readme.txt
r2769451 r2786235 5 5 Requires at least: 4.0 6 6 Tested up to: 6.0 7 Stable tag: 2.4. 67 Stable tag: 2.4.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 91 91 == Changelog == 92 92 93 = 2.4.7 = 94 * Fixed a bug where the slide 'MOVE UP' button strips out some content. 95 93 96 = 2.4.6 = 94 97 * Removed the 'Slider Preview' feature as it was causing issues on some installations of WordPress. … … 811 814 = 2.4.6 = 812 815 * 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 4 4 * Plugin URI: https://wordpress.org/plugins/slide-anything/ 5 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 * Version: 2.4. 66 * Version: 2.4.7 7 7 * 8 8 * @package WordPress_Slide_Anything
Note: See TracChangeset
for help on using the changeset viewer.