Plugin Directory

Changeset 2838370


Ignore:
Timestamp:
12/23/2022 07:46:00 AM (3 years ago)
Author:
yehi
Message:

Version 1.1.7

Location:
advanced-notifications/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • advanced-notifications/trunk/advanced-notifications.php

    r2800574 r2838370  
    44 * Plugin URI: https://wordpress.org/plugins/advanced-notifications
    55 * Description: Advanced Notifications allows you to create beautiful custom notifications
    6  * Version: 1.1.6
     6 * Version: 1.1.7
    77 * Author: Yehi
    88 * Author URI: https://profiles.wordpress.org/yehi/
  • advanced-notifications/trunk/plugins/easy-interface-settings/includes/eis-css-generator.php

    r2623869 r2838370  
    127127                        if (!is_eis_option_hidden($interface_id, $input_id)) {
    128128                            $eis_interfaces_options = get_register_eis_interfaces_options($interface_id, $input_id);
    129                             $css_var = $eis_interfaces_options['css_var'];
    130                             $css_units = $eis_interfaces_options['css_units'];
    131                             $css_property = $eis_interfaces_options['css_property'];
    132                             $css_element = $eis_interfaces_options['css_element'];
    133                             $post_id = $eis_meta_value['post_id'];
     129                            $css_var = isset($eis_interfaces_options['css_var']) ? $eis_interfaces_options['css_var'] : null;
     130                            $css_units = isset($eis_interfaces_options['css_units']) ? $eis_interfaces_options['css_units'] : null;
     131                            $css_property = isset($eis_interfaces_options['css_property']) ? $eis_interfaces_options['css_property'] : null;
     132                            $css_element = isset($eis_interfaces_options['css_element']) ? $eis_interfaces_options['css_element'] : null;
     133                            $post_id = isset($eis_meta_value['post_id']) ? $eis_meta_value['post_id'] : null;
    134134                            if ($css_var != null || $css_property != null || $css_element != null) {
    135135                                $css_vars_arr[$post_id][] = array(
  • advanced-notifications/trunk/readme.txt

    r2800574 r2838370  
    4848== Changelog ==
    4949
     50= 1.1.7 =
     51* Update: eis plugin
     52
    5053= 1.1.6 =
    5154* Add: notification preview
Note: See TracChangeset for help on using the changeset viewer.