Plugin Directory

Changeset 3157542


Ignore:
Timestamp:
09/25/2024 12:29:12 PM (18 months ago)
Author:
cssigniterteam
Message:

Update to version 1.2.4 from GitHub

Location:
maxslider
Files:
10 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • maxslider/tags/1.2.4/languages/maxslider.pot

    r2948778 r3157542  
    33msgstr ""
    44"Project-Id-Version: MaxSlider\n"
    5 "POT-Creation-Date: 2023-08-07 20:27+0300\n"
     5"POT-Creation-Date: 2024-09-25 15:25+0300\n"
    66"PO-Revision-Date: 2016-08-29 19:22+0300\n"
    77"Last-Translator: Anastis Sourgoutsidis <[email protected]>\n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    13 "X-Generator: Poedit 3.3.2\n"
     13"X-Generator: Poedit 3.5\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-WPHeader: maxslider.php\n"
     
    420420msgstr ""
    421421
    422 #: maxslider.php:1850
     422#: maxslider.php:1849
    423423msgctxt "maxslider template"
    424424msgid "Default"
  • maxslider/tags/1.2.4/maxslider.php

    r2948778 r3157542  
    66 * Author: The CSSIgniter Team
    77 * Author URI: https://www.cssigniter.com
    8  * Version: 1.2.3
     8 * Version: 1.2.4
    99 * Text Domain: maxslider
    1010 * Domain Path: languages
     
    3737     * @since 1.0.0
    3838     */
    39     public static $version = '1.2.3';
     39    public static $version = '1.2.4';
    4040
    4141    /**
     
    16161616        ), $atts, $tag );
    16171617
    1618 
    16191618        $id = intval( $atts['id'] );
    16201619        $id = apply_filters( 'wpml_object_id', $id, $this->post_type, true );
     
    16251624        }
    16261625
    1627         $slider['template'] = $atts['template'];
     1626        $slider['template'] = sanitize_key( $atts['template'] );
    16281627
    16291628        ob_start();
    16301629
    1631         $this->get_template_part( 'slider', $atts['template'], array(
     1630        $this->get_template_part( 'slider', $slider['template'], array(
    16321631            'slider'   => $slider,
    1633             'template' => $atts['template'],
     1632            'template' => $slider['template'],
    16341633        ) );
    16351634
  • maxslider/tags/1.2.4/readme.txt

    r2994997 r3157542  
    33Tags: content slider, gallery slider, image slider, layer slider, Photo Slider, responsive slider, slide, slider, slider plugin, slideshow, wordpress slider, wordpress slideshow
    44Requires at least: 5.0
    5 Tested up to: 6.4
    6 Stable tag: 1.2.3
     5Tested up to: 6.6
     6Stable tag: 1.2.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747
    4848== Changelog ==
     49= 1.2.4 =
     50* Sanitize shortcode parameter to avoid potential Local File Inclusion (LFI) vulnerabilities.
     51
    4952= 1.2.3 =
    5053* Fixed issue where since the iframe-ing of the block editor in WP 6.3, block editor assets would not get enqueued under specific circumstances.
  • maxslider/trunk/languages/maxslider.pot

    r2948778 r3157542  
    33msgstr ""
    44"Project-Id-Version: MaxSlider\n"
    5 "POT-Creation-Date: 2023-08-07 20:27+0300\n"
     5"POT-Creation-Date: 2024-09-25 15:25+0300\n"
    66"PO-Revision-Date: 2016-08-29 19:22+0300\n"
    77"Last-Translator: Anastis Sourgoutsidis <[email protected]>\n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    13 "X-Generator: Poedit 3.3.2\n"
     13"X-Generator: Poedit 3.5\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-WPHeader: maxslider.php\n"
     
    420420msgstr ""
    421421
    422 #: maxslider.php:1850
     422#: maxslider.php:1849
    423423msgctxt "maxslider template"
    424424msgid "Default"
  • maxslider/trunk/maxslider.php

    r2948778 r3157542  
    66 * Author: The CSSIgniter Team
    77 * Author URI: https://www.cssigniter.com
    8  * Version: 1.2.3
     8 * Version: 1.2.4
    99 * Text Domain: maxslider
    1010 * Domain Path: languages
     
    3737     * @since 1.0.0
    3838     */
    39     public static $version = '1.2.3';
     39    public static $version = '1.2.4';
    4040
    4141    /**
     
    16161616        ), $atts, $tag );
    16171617
    1618 
    16191618        $id = intval( $atts['id'] );
    16201619        $id = apply_filters( 'wpml_object_id', $id, $this->post_type, true );
     
    16251624        }
    16261625
    1627         $slider['template'] = $atts['template'];
     1626        $slider['template'] = sanitize_key( $atts['template'] );
    16281627
    16291628        ob_start();
    16301629
    1631         $this->get_template_part( 'slider', $atts['template'], array(
     1630        $this->get_template_part( 'slider', $slider['template'], array(
    16321631            'slider'   => $slider,
    1633             'template' => $atts['template'],
     1632            'template' => $slider['template'],
    16341633        ) );
    16351634
  • maxslider/trunk/readme.txt

    r2994997 r3157542  
    33Tags: content slider, gallery slider, image slider, layer slider, Photo Slider, responsive slider, slide, slider, slider plugin, slideshow, wordpress slider, wordpress slideshow
    44Requires at least: 5.0
    5 Tested up to: 6.4
    6 Stable tag: 1.2.3
     5Tested up to: 6.6
     6Stable tag: 1.2.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747
    4848== Changelog ==
     49= 1.2.4 =
     50* Sanitize shortcode parameter to avoid potential Local File Inclusion (LFI) vulnerabilities.
     51
    4952= 1.2.3 =
    5053* Fixed issue where since the iframe-ing of the block editor in WP 6.3, block editor assets would not get enqueued under specific circumstances.
Note: See TracChangeset for help on using the changeset viewer.