Plugin Directory

Changeset 3041810


Ignore:
Timestamp:
02/27/2024 09:54:56 AM (2 years ago)
Author:
giucu91
Message:

update to 2.7.93

Location:
modula-best-grid-gallery
Files:
303 added
4 edited

Legend:

Unmodified
Added
Removed
  • modula-best-grid-gallery/trunk/Modula.php

    r3041233 r3041810  
    55* Description:              Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks.
    66* Author:                   WPChill
    7 * Version:                  2.7.92
     7* Version:                  2.7.93
    88* Author URI:               https://www.wpchill.com/
    99* License:                  GPLv3 or later
     
    4848 */
    4949
    50 define( 'MODULA_LITE_VERSION' , '2.7.92' );
     50define( 'MODULA_LITE_VERSION' , '2.7.93' );
    5151define( 'MODULA_PATH' , plugin_dir_path( __FILE__ ) );
    5252define( 'MODULA_URL' , plugin_dir_url( __FILE__ ) );
  • modula-best-grid-gallery/trunk/changelog.txt

    r3041233 r3041810  
     1= 2.7.93 - 27.02.2024 =
     2Fixed: Warning undefined array key “enable_optimization”.
     3
    14= 2.7.92 - 23.02.2023 =
    25Fixed: Extensions -> Last reload date.
  • modula-best-grid-gallery/trunk/includes/class-modula-backward-compatibility.php

    r3041233 r3041810  
    359359    public function generate_optimized_image_links( $item_data, $item, $settings ) {
    360360
    361 
    362361        // Ensure that the settings are set.
    363362        $settings = wp_parse_args( $settings, Modula_CPT_Fields_Helper::get_defaults() );
    364363
    365         if ( 'disabled' == $settings['enable_optimization'] ) {
     364        if ( isset( $settings['enable_optimization'] ) && 'disabled' == $settings['enable_optimization'] ) {
    366365            return $item_data;
    367366        }
  • modula-best-grid-gallery/trunk/readme.txt

    r3041239 r3041810  
    55Tested up to: 6.4
    66Requires PHP: 5.6
    7 Stable tag: 2.7.92
     7Stable tag: 2.7.93
    88License: GNU General Public License v3.0 or later
    99The WordPress gallery plugin that's highly customizable & you can use to impress your clients. Create beautiful image galleries in minutes.
     
    262262
    263263== Changelog ==
    264 = 2.7.92 - TBD =
     264
     265= 2.7.93 - 27.02.2024 =
     266Fixed: Warning undefined array key “enable_optimization” ( [#915](https://github.com/WPChill/modula-lite/issues/915) )
     267
     268= 2.7.92 - 23.02.2024 =
    265269Fixed: Extensions -> Last reload date. ( [#907](https://github.com/WPChill/modula-lite/issues/907) )
    266270
Note: See TracChangeset for help on using the changeset viewer.