Plugin Directory

Changeset 3390198


Ignore:
Timestamp:
11/05/2025 07:25:44 AM (5 months ago)
Author:
wanotifier
Message:

v2.7.12

Location:
notifier
Files:
472 added
4 edited

Legend:

Unmodified
Added
Removed
  • notifier/trunk/README.txt

    r3375803 r3390198  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 2.7.11
     7Stable tag: 2.7.12
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    159159
    160160== Changelog ==
     161= 2.7.12 - 2025-11-05 =
     162fix: PHP warning for undefined array key in Fluent Forms field processing
     163
    161164= 2.7.11 - 2025-10-09 =
    162165add: new slug field for post triggers
  • notifier/trunk/includes/class-notifier.php

    r3375803 r3390198  
    2424     */
    2525    private function define_constants() {
    26         $this->define( 'NOTIFIER_VERSION', '2.7.11' );
     26        $this->define( 'NOTIFIER_VERSION', '2.7.12' );
    2727        $this->define( 'NOTIFIER_NAME', 'notifier' );
    2828        $this->define( 'NOTIFIER_PREFIX', 'notifier_' );
  • notifier/trunk/includes/classes/integrations/class-notifier-fluentforms.php

    r3066741 r3390198  
    128128                }else if('input_image' === $value['element']) {
    129129                    $field_type = 'image';
    130                     $field_name = $value['attributes']['name'];
     130                    $field_name = isset($value['attributes']['name']) ? $value['attributes']['name'] : '';
    131131
    132132                    if(!empty($value['settings']['label'])){
     
    143143                    ];
    144144                }else {
    145                     $field_type = !empty($value['attributes']['type'])?$value['attributes']['type']:'text';
    146                     $field_name = $value['attributes']['name'];
     145                    $field_type = !empty($value['attributes']['type']) ? $value['attributes']['type'] : 'text';
     146                    $field_name = isset($value['attributes']['name']) ? $value['attributes']['name'] : '';
    147147
    148148                    if(!empty($value['settings']['label'])){
     
    151151                        $field_lbl = $value['settings']['admin_field_label'];
    152152                    }else{
    153                         $field_lbl = 'lbl_'.$value['attributes']['name'];
     153                        $field_lbl = 'lbl_'.$field_name;
    154154                    }
    155155
  • notifier/trunk/notifier.php

    r3375803 r3390198  
    44 * Plugin URI: https://wordpress.org/plugins/notifier/
    55 * Description: WhatsApp API integration to send WhatsApp notifications from Woocommerce, Contact Form 7, Gravity Forms, WPForms & more.
    6  * Version: 2.7.11
     6 * Version: 2.7.12
    77 * Author: WANotifier
    88 * Author URI: https://wanotifier.com
Note: See TracChangeset for help on using the changeset viewer.