Plugin Directory

Changeset 3084860

Timestamp:
05/11/2024 07:00:33 AM (3 months ago)
Author:
averta
Message:

Committing 3.9.10 to trunk

Location:
master-slider/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • master-slider/trunk/README.txt

    r3065917 r3084860  
    77Requires PHP: 5.4
    88Requires at least: 5.0
    9 Tested up to: 6.4
    10 Stable tag: 3.9.9
     9Tested up to: 6.
     10Stable tag: 3.9.
    1111
    1212Build SEO friendly sliders fast and easy with touch swipe navigation that works smoothly across all devices.
     
    238238== Changelog ==
    239239
     240
     241
     242
     243
    240244= 3.9.8 =
    241245= Version 3.9.8/ (28.03.2024) =
    242 - [Improvement]: Security improvement applied.
     246- [Improvement]: applied.
    243247
    244248= 3.9.5 =
  • master-slider/trunk/includes/init/define.php

    r3065917 r3084860  
    66}
    77
    8 define( 'MSWP_AVERTA_VERSION'       , '3.9.9' );
     8define( 'MSWP_AVERTA_VERSION'       , '3.9.' );
    99
    1010define( 'MSWP_SLUG'                 , 'master-slider' );
  • master-slider/trunk/includes/msp-shortcodes.php

    r3065917 r3084860  
    551551                <?php
    552552                if( ! empty( $on_init ) )
    553                     printf( "$instance_name.api.addEventListener(MSSliderEvent.INIT, %s );\n"        , esc_html( msp_maybe_base64_decode( $on_init ) ) ) ;
     553                    printf( "$instance_name.api.addEventListener(MSSliderEvent.INIT, %s );\n"        , ( msp_maybe_base64_decode( $on_init ) ) ) ;
    554554
    555555                if( ! empty( $on_change_start ) )
    556                     printf( "$instance_name.api.addEventListener(MSSliderEvent.CHANGE_START, %s );\n"         , esc_html( msp_maybe_base64_decode( $on_change_start ) ) ) ;
     556                    printf( "$instance_name.api.addEventListener(MSSliderEvent.CHANGE_START, %s );\n"         , ( msp_maybe_base64_decode( $on_change_start ) ) ) ;
    557557
    558558                if( ! empty( $on_change_end ) )
    559                     printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.CHANGE_END, %s );\n"  , esc_html( msp_maybe_base64_decode( $on_change_end ) ) ) ;
     559                    printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.CHANGE_END, %s );\n"  , ( msp_maybe_base64_decode( $on_change_end ) ) ) ;
    560560
    561561                if( ! empty( $on_waiting ) )
    562                     printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.WAITING, %s );\n"     , esc_html( msp_maybe_base64_decode( $on_waiting ) ) ) ;
     562                    printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.WAITING, %s );\n"     , ( msp_maybe_base64_decode( $on_waiting ) ) ) ;
    563563
    564564                if( ! empty( $on_resize ) )
    565                     printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.RESIZE, %s );\n"      , esc_html( msp_maybe_base64_decode( $on_resize ) ) ) ;
     565                    printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.RESIZE, %s );\n"      , ( msp_maybe_base64_decode( $on_resize ) ) ) ;
    566566
    567567                if( ! empty( $on_video_play ) )
    568                     printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.VIDEO_PLAY, %s );\n"  , esc_html( msp_maybe_base64_decode( $on_video_play ) ) ) ;
    569 
     568                    printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.VIDEO_PLAY, %s );\n"  , msp_masterslider_prevent_closing_script_tag( msp_maybe_base64_decode( $on_video_play ) ) ) ;
    570569                if( ! empty( $on_video_close ) )
    571                     printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.VIDEO_CLOSE, %s );\n" , esc_html( msp_maybe_base64_decode( $on_video_close ) ) ) ;
     570                    printf( "\t\t\t\t$instance_name.api.addEventListener(MSSliderEvent.VIDEO_CLOSE, %s );\n" , ( msp_maybe_base64_decode( $on_video_close ) ) ) ;
    572571
    573572                if( $on_swipe_start || $on_swipe_move || $on_swipe_end ){
     
    576575
    577576                    if( ! empty( $on_swipe_start ) ){
    578                         printf( "\t\t\t\t$instance_name.api.view.addEventListener(MSViewEvents.SWIPE_START, %s );\n" , esc_html( msp_maybe_base64_decode( $on_swipe_start ) ) ) ;
     577                        printf( "\t\t\t\t$instance_name.api.view.addEventListener(MSViewEvents.SWIPE_START, %s );\n" , ( msp_maybe_base64_decode( $on_swipe_start ) ) ) ;
    579578                    }
    580579
    581580                    if( ! empty( $on_swipe_move ) ){
    582                         printf( "\t\t\t\t$instance_name.api.view.addEventListener(MSViewEvents.SWIPE_MOVE, %s );\n"  , esc_html( msp_maybe_base64_decode( $on_swipe_move ) ) ) ;
     581                        printf( "\t\t\t\t$instance_name.api.view.addEventListener(MSViewEvents.SWIPE_MOVE, %s );\n"  , ( msp_maybe_base64_decode( $on_swipe_move ) ) ) ;
    583582                    }
    584583
    585584                    if( ! empty( $on_swipe_end ) ){
    586                         printf( "\t\t\t\t$instance_name.api.view.addEventListener(MSViewEvents.SWIPE_END, %s );\n"   , esc_html( msp_maybe_base64_decode( $on_swipe_end ) ) ) ;
     585                        printf( "\t\t\t\t$instance_name.api.view.addEventListener(MSViewEvents.SWIPE_END, %s );\n"   , ( msp_maybe_base64_decode( $on_swipe_end ) ) ) ;
    587586                    }
    588587
     
    698697
    699698    // add slide starter tag
    700     $slide_start_tag = sprintf( '<div %s class="ms-slide%s" %s %s %s >', $css_id, $css_class, $data_delay, $data_align, $style_attr )."\n";
     699    $slide_start_tag = sprintf( '<div %s class="ms-slide%s" %s %s %s >', $css_id, , $data_delay, $data_align, $style_attr )."\n";
    701700
    702701    // making start tag filterable for extend purposes
     
    10761075
    10771076     // create slide info markup
    1078      $output = sprintf( '<%1$s class="ms-info%2$s">%3$s</%1$s>', esc_attr( $tag_name ), esc_attr( $css_class ), do_shortcode( wp_unslash( $content ) ) )."\n";
     1077     $output = sprintf( '<%1$s class="ms-info%2$s">%3$s</%1$s>', ( $tag_name ), esc_attr( $css_class ), do_shortcode( wp_unslash( $content ) ) )."\n";
    10791078
    10801079     return apply_filters( 'masterslider_slide_info_shortcode', "\t\t\t\t\t".$output, $args );
     
    11041103    return apply_filters( 'masterslider_slide_flickr_shortcode', "\t\t\t\t".$output, $args );
    11051104}
     1105
     1106
     1107
     1108
     1109
     1110
     1111
     1112
     1113
     1114
  • master-slider/trunk/master-slider.php

    r3065917 r3084860  
    1212 * Plugin URI:        https://wordpress.org/plugins/master-slider/
    1313 * Description:       Master Slider is the most advanced responsive HTML5 WordPress slider plugin with touch swipe navigation that works smoothly on devices too.
    14  * Version:           3.9.9
     14 * Version:           3.9.
    1515 * Author:            Averta
    1616 * Author URI:        https://averta.net
     
    1818 * License URI:       license.txt
    1919 * Domain Path:       /languages
    20  * Tested up to:      6.4
     20 * Tested up to:      6.
    2121 */
    2222
Note: See TracChangeset for help on using the changeset viewer.