Plugin Directory

Changeset 3111740


Ignore:
Timestamp:
07/03/2024 01:34:43 PM (21 months ago)
Author:
suiteplugins
Message:

Version 1.0.8

Location:
gallery-for-ultimate-member
Files:
91 added
4 edited

Legend:

Unmodified
Added
Removed
  • gallery-for-ultimate-member/trunk/changelog.txt

    r3111399 r3111740  
    7878Fixed: Plugin has error in PHP 7.4
    7979Maintenance: Removed CMB2 Library for settings
     80
     81= 1.0.8 =
     82Fixed: New activations experienced fatal error
  • gallery-for-ultimate-member/trunk/gallery-for-ultimate-member.php

    r3111399 r3111740  
    44 * Plugin URI: https://suiteplugins.com/
    55 * Description: Allow your user to upload photos from their Ultimate Member profile
    6  * Version: 1.0.7
     6 * Version: 1.0.8
    77 * Requires at least: 5.2
    88 * Requires PHP:      5.4
     
    2525define( 'UM_GALLERY_LITE_PATH', plugin_dir_path( __FILE__ ) );
    2626define( 'UM_GALLERY_LITE_PLUGIN', plugin_basename( __FILE__ ) );
    27 define( 'UM_GALLERY_LITE_VERSION', '1.0.7' );
     27define( 'UM_GALLERY_LITE_VERSION', '1.0.8' );
    2828require_once ABSPATH . 'wp-admin/includes/plugin.php';
    2929
  • gallery-for-ultimate-member/trunk/includes/um-gallery-functions.php

    r3111400 r3111740  
    10361036    $admin       = new UM_Gallery_Settings();
    10371037    $fields      = $admin->get_settings_fields();
    1038     $options     = get_option( 'um_gallery' );
     1038    $options     = get_option( 'um_gallery', array() );
    10391039    $option_keys = array_keys( $options );
    10401040    if ( ! empty( $fields ) ) {
  • gallery-for-ultimate-member/trunk/readme.txt

    r3111399 r3111740  
    115115== Changelog ==
    116116
     117= 1.0.8 =
     118Fixed: New activations experienced fatal error
     119
    117120= 1.0.7 =
    118121Fixed: Plugin has error in PHP 7.4
Note: See TracChangeset for help on using the changeset viewer.