Changeset 3439561
- Timestamp:
- 01/14/2026 01:20:36 PM (3 months ago)
- Location:
- modula-best-grid-gallery
- Files:
-
- 12 edited
- 1 copied
-
tags/2.13.5 (copied) (copied from modula-best-grid-gallery/trunk)
-
tags/2.13.5/Modula.php (modified) (2 diffs)
-
tags/2.13.5/changelog.txt (modified) (1 diff)
-
tags/2.13.5/includes/elementor/class-modula-elementor-widget-activation.php (modified) (1 diff)
-
tags/2.13.5/includes/elementor/widgets/class-modula-elementor.php (modified) (2 diffs)
-
tags/2.13.5/includes/public/class-modula-shortcode.php (modified) (1 diff)
-
tags/2.13.5/readme.txt (modified) (2 diffs)
-
trunk/Modula.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/elementor/class-modula-elementor-widget-activation.php (modified) (1 diff)
-
trunk/includes/elementor/widgets/class-modula-elementor.php (modified) (2 diffs)
-
trunk/includes/public/class-modula-shortcode.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
modula-best-grid-gallery/tags/2.13.5/Modula.php
r3414176 r3439561 5 5 * Description: Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks. 6 6 * Author: WPChill 7 * Version: 2.13. 47 * Version: 2.13.5 8 8 * Author URI: https://www.wpchill.com/ 9 9 * License: GPLv3 or later … … 48 48 */ 49 49 50 define( 'MODULA_LITE_VERSION', '2.13. 4' );50 define( 'MODULA_LITE_VERSION', '2.13.5' ); 51 51 define( 'MODULA_PATH', plugin_dir_path( __FILE__ ) ); 52 52 define( 'MODULA_URL', plugin_dir_url( __FILE__ ) ); -
modula-best-grid-gallery/tags/2.13.5/changelog.txt
r3414176 r3439561 1 = 2.13.5 - 14.12.2025 = 2 Fixed: Fatal error when the theme enqueues styles for all widgets. 3 Fixed: Security issues. 4 1 5 = 2.13.4 - 08.12.2025 = 2 6 Fixed: Security issues. -
modula-best-grid-gallery/tags/2.13.5/includes/elementor/class-modula-elementor-widget-activation.php
r3121978 r3439561 33 33 $this->include_widgets_files(); 34 34 // Register Widgets 35 \Elementor\Plugin::instance()->widgets_manager->register _widget_type( new Widgets\Modula_Elementor_Widget() );35 \Elementor\Plugin::instance()->widgets_manager->register( new Widgets\Modula_Elementor_Widget() ); 36 36 } 37 37 -
modula-best-grid-gallery/tags/2.13.5/includes/elementor/widgets/class-modula-elementor.php
r3121978 r3439561 13 13 14 14 public function get_script_depends() { 15 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ){15 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ) { 16 16 return array(); 17 17 } 18 $g_settings = $this->get_settings_for_display(); 19 $gallery_id = isset( $g_settings['modula_gallery_select'] ) ? $g_settings['modula_gallery_select'] : 0; 20 $settings = apply_filters('modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true )); 18 try { 19 $g_settings = $this->get_settings_for_display(); 20 } catch ( \Throwable $e ) { 21 return array(); 22 } 23 $gallery_id = isset( $g_settings['modula_gallery_select'] ) ? $g_settings['modula_gallery_select'] : 0; 24 $settings = apply_filters( 'modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true ) ); 21 25 22 26 return apply_filters( 'modula_necessary_scripts', array( 'modula' ), $settings ); … … 24 28 25 29 public function get_style_depends() { 26 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ){30 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ) { 27 31 return array(); 28 32 } 29 $g_settings = $this->get_settings_for_display(); 33 try { 34 $g_settings = $this->get_settings_for_display(); 35 } catch ( \Throwable $e ) { 36 return array(); 37 } 30 38 $gallery_id = isset( $g_settings['modula_gallery_select'] ) ? $g_settings['modula_gallery_select'] : 0; 31 $settings = apply_filters('modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true ));39 $settings = apply_filters( 'modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true ) ); 32 40 33 41 return apply_filters( 'modula_necessary_styles', array( 'modula' ), $settings ); -
modula-best-grid-gallery/tags/2.13.5/includes/public/class-modula-shortcode.php
r3381307 r3439561 370 370 371 371 if ( strlen( $settings['style'] ) ) { 372 $css .= htmlspecialchars_decode( $settings['style'] );372 $css .= esc_html( $settings['style'] ); 373 373 } 374 374 -
modula-best-grid-gallery/tags/2.13.5/readme.txt
r3439297 r3439561 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 Stable tag: 2.13. 47 Stable tag: 2.13.5 8 8 9 9 License: GNU General Public License v3.0 or later … … 327 327 == Changelog == 328 328 329 = 2.13.5 - 14.12.2025 = 330 Fixed: Fatal error when the theme enqueues styles for all widgets. 331 Fixed: Security issues. 332 329 333 = 2.13.4 - 08.12.2025 = 330 334 Fixed: Security issues. -
modula-best-grid-gallery/trunk/Modula.php
r3414176 r3439561 5 5 * Description: Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks. 6 6 * Author: WPChill 7 * Version: 2.13. 47 * Version: 2.13.5 8 8 * Author URI: https://www.wpchill.com/ 9 9 * License: GPLv3 or later … … 48 48 */ 49 49 50 define( 'MODULA_LITE_VERSION', '2.13. 4' );50 define( 'MODULA_LITE_VERSION', '2.13.5' ); 51 51 define( 'MODULA_PATH', plugin_dir_path( __FILE__ ) ); 52 52 define( 'MODULA_URL', plugin_dir_url( __FILE__ ) ); -
modula-best-grid-gallery/trunk/changelog.txt
r3414176 r3439561 1 = 2.13.5 - 14.12.2025 = 2 Fixed: Fatal error when the theme enqueues styles for all widgets. 3 Fixed: Security issues. 4 1 5 = 2.13.4 - 08.12.2025 = 2 6 Fixed: Security issues. -
modula-best-grid-gallery/trunk/includes/elementor/class-modula-elementor-widget-activation.php
r3121978 r3439561 33 33 $this->include_widgets_files(); 34 34 // Register Widgets 35 \Elementor\Plugin::instance()->widgets_manager->register _widget_type( new Widgets\Modula_Elementor_Widget() );35 \Elementor\Plugin::instance()->widgets_manager->register( new Widgets\Modula_Elementor_Widget() ); 36 36 } 37 37 -
modula-best-grid-gallery/trunk/includes/elementor/widgets/class-modula-elementor.php
r3121978 r3439561 13 13 14 14 public function get_script_depends() { 15 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ){15 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ) { 16 16 return array(); 17 17 } 18 $g_settings = $this->get_settings_for_display(); 19 $gallery_id = isset( $g_settings['modula_gallery_select'] ) ? $g_settings['modula_gallery_select'] : 0; 20 $settings = apply_filters('modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true )); 18 try { 19 $g_settings = $this->get_settings_for_display(); 20 } catch ( \Throwable $e ) { 21 return array(); 22 } 23 $gallery_id = isset( $g_settings['modula_gallery_select'] ) ? $g_settings['modula_gallery_select'] : 0; 24 $settings = apply_filters( 'modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true ) ); 21 25 22 26 return apply_filters( 'modula_necessary_scripts', array( 'modula' ), $settings ); … … 24 28 25 29 public function get_style_depends() { 26 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ){30 if ( \Elementor\Plugin::$instance->preview->is_preview_mode() ) { 27 31 return array(); 28 32 } 29 $g_settings = $this->get_settings_for_display(); 33 try { 34 $g_settings = $this->get_settings_for_display(); 35 } catch ( \Throwable $e ) { 36 return array(); 37 } 30 38 $gallery_id = isset( $g_settings['modula_gallery_select'] ) ? $g_settings['modula_gallery_select'] : 0; 31 $settings = apply_filters('modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true ));39 $settings = apply_filters( 'modula_backwards_compatibility_front', get_post_meta( $gallery_id, 'modula-settings', true ) ); 32 40 33 41 return apply_filters( 'modula_necessary_styles', array( 'modula' ), $settings ); -
modula-best-grid-gallery/trunk/includes/public/class-modula-shortcode.php
r3381307 r3439561 370 370 371 371 if ( strlen( $settings['style'] ) ) { 372 $css .= htmlspecialchars_decode( $settings['style'] );372 $css .= esc_html( $settings['style'] ); 373 373 } 374 374 -
modula-best-grid-gallery/trunk/readme.txt
r3439297 r3439561 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 Stable tag: 2.13. 47 Stable tag: 2.13.5 8 8 9 9 License: GNU General Public License v3.0 or later … … 327 327 == Changelog == 328 328 329 = 2.13.5 - 14.12.2025 = 330 Fixed: Fatal error when the theme enqueues styles for all widgets. 331 Fixed: Security issues. 332 329 333 = 2.13.4 - 08.12.2025 = 330 334 Fixed: Security issues.
Note: See TracChangeset
for help on using the changeset viewer.