Plugin Directory

Changeset 3418337


Ignore:
Timestamp:
12/12/2025 01:58:47 PM (4 months ago)
Author:
altesin
Message:

release 3.6.9

Location:
final-tiles-grid-gallery-lite
Files:
322 added
4 edited

Legend:

Unmodified
Added
Removed
  • final-tiles-grid-gallery-lite/trunk/FinalTilesGalleryLite.php

    r3417363 r3418337  
    44 * Plugin Name:              Final Tiles Grid Gallery - Image Gallery
    55 * Description:              WordPress Plugin for creating responsive image galleries.
    6  * Version:                  3.6.8
     6 * Version:                  3.6.9
    77 * Author:                   WPChill
    88 * Author URI:               https://wpchill.com
     
    2626 *
    2727 */
    28 define( 'FTGVERSION', '3.6.8' );
     28define( 'FTGVERSION', '3.6.9' );
    2929// Create a helper function for easy SDK access.
    3030if ( !function_exists( 'ftg_fs' ) ) {
     
    11351135                    $script = ( isset( $_POST['ftg_script'] ) ? wp_kses_post( wp_unslash( $_POST['ftg_script'] ) ) : '' );
    11361136                } else {
    1137                     $script = ( isset( $_POST['ftg_script'] ) ? wp_strip_all_tags( wp_unslash( $_POST['ftg_script'] ) ) : '' );
     1137                    $script = '';
    11381138                }
    11391139                $captionEffectDuration = ( isset( $_POST['ftg_captionEffectDuration'] ) ? absint( $_POST['ftg_captionEffectDuration'] ) : 250 );
  • final-tiles-grid-gallery-lite/trunk/admin/include/fields.php

    r3344650 r3418337  
    934934    "excludeFrom" => array("shortcode"),
    935935) );
    936 $this->addField( "Customizations", "script", array(
    937     "name"        => esc_html__( "Custom scripts", "final-tiles-grid-gallery-lite" ),
    938     "type"        => "textarea",
    939     "description" => wp_kses( __( "This script will be called after the gallery initialization. Useful for custom lightboxes.\r\n            <br />\r\n            <br />\r\n            <strong>Write just the code without using the &lt;script&gt;&lt;/script&gt; tags</strong>", "final-tiles-grid-gallery-lite" ), array() ),
    940     "proCall"     => false,
    941     "excludeFrom" => array("shortcode"),
    942 ) );
     936if ( current_user_can( 'unfiltered_html' ) ) {
     937    $this->addField( "Customizations", "script", array(
     938        "name"        => esc_html__( "Custom scripts", "final-tiles-grid-gallery-lite" ),
     939        "type"        => "textarea",
     940        "description" => wp_kses( __( "This script will be called after the gallery initialization. Useful for custom lightboxes.\r\n                <br />\r\n                <br />\r\n                <strong>Write just the code without using the &lt;script&gt;&lt;/script&gt; tags</strong>", "final-tiles-grid-gallery-lite" ), array() ),
     941        "proCall"     => false,
     942        "excludeFrom" => array("shortcode"),
     943    ) );
     944}
    943945$this->addField( "Customizations", "delay", array(
    944946    "name"        => esc_html__( "Delay", "final-tiles-grid-gallery-lite" ),
  • final-tiles-grid-gallery-lite/trunk/changelog.txt

    r3417363 r3418337  
     1= 3.6.9 - 12.12.2025 =
     2- Fixed: Security update
     3
    14= 3.6.8 - 11.12.2025 =
    25- Fixed: Security update
  • final-tiles-grid-gallery-lite/trunk/readme.txt

    r3417363 r3418337  
    44Requires at least: 5.2
    55Tested up to: 6.9
    6 Stable tag: 3.6.8
     6Stable tag: 3.6.9
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    129129
    130130== Changelog ==
     131= 3.6.9 - 12.12.2025 =
     132- Fixed: Security update
     133
    131134= 3.6.8 - 11.12.2025 =
    132135- Fixed: Security update
Note: See TracChangeset for help on using the changeset viewer.