Plugin Directory

Changeset 3239895


Ignore:
Timestamp:
02/13/2025 07:58:52 AM (10 months ago)
Author:
anthonyeden
Message:

Version 2.5.3

Location:
profiler-donations-gravityforms
Files:
5 edited
5 copied

Legend:

Unmodified
Added
Removed
  • profiler-donations-gravityforms/tags/2.5.3/class-feedlist-gfaddon.php

    r3211379 r3239895  
    4141            array(
    4242                'title'  => 'Profiler Feeds',
    43                 'description' => 'This section lists all the Profiler feeds on your site.',
     43                'description' => 'This section lists all the Profiler feeds on your site. Only Active forms are displayed. Inactive and Trashed forms are not shown in this list.',
    4444                'capability' => 'gravityforms_edit_settings',
    4545                'fields' => array(
     
    112112            }
    113113
     114            if($form['is_trash'] == true) {
     115                continue;
     116            }
     117
     118            if($form['is_active'] == false) {
     119                continue;
     120            }
     121
    114122            $found_feeds = true;
    115123
  • profiler-donations-gravityforms/tags/2.5.3/class-profilercommon.php

    r3227863 r3239895  
    718718        // Remove whitespace
    719719        foreach($profiler_query as $key => $val) {
    720             $profiler_query[$key] = trim($val);
     720            if(is_string($val)) {
     721                $profiler_query[$key] = trim($val);
     722            }
    721723        }
    722724
  • profiler-donations-gravityforms/tags/2.5.3/index.php

    r3227863 r3239895  
    44Plugin URI: https://mediarealm.com.au/
    55Description: Integrates Gravity Forms with Profiler, enabling donation data and more to be sent directly to Profiler.
    6 Version: 2.5.2
     6Version: 2.5.3
    77
    88Author: Media Realm
  • profiler-donations-gravityforms/tags/2.5.3/readme.txt

    r3227863 r3239895  
    2222
    2323== Changelog ==
     24
     25= 2.5.3 =
     26
     27* Feed List: Don't show feeds for inactive forms and forms in the trash
     28* Fix a fatal error when using Custom Fields in the Donation feed
    2429
    2530= 2.5.2 =
  • profiler-donations-gravityforms/trunk/class-feedlist-gfaddon.php

    r3211379 r3239895  
    4141            array(
    4242                'title'  => 'Profiler Feeds',
    43                 'description' => 'This section lists all the Profiler feeds on your site.',
     43                'description' => 'This section lists all the Profiler feeds on your site. Only Active forms are displayed. Inactive and Trashed forms are not shown in this list.',
    4444                'capability' => 'gravityforms_edit_settings',
    4545                'fields' => array(
     
    112112            }
    113113
     114            if($form['is_trash'] == true) {
     115                continue;
     116            }
     117
     118            if($form['is_active'] == false) {
     119                continue;
     120            }
     121
    114122            $found_feeds = true;
    115123
  • profiler-donations-gravityforms/trunk/class-profilercommon.php

    r3227863 r3239895  
    718718        // Remove whitespace
    719719        foreach($profiler_query as $key => $val) {
    720             $profiler_query[$key] = trim($val);
     720            if(is_string($val)) {
     721                $profiler_query[$key] = trim($val);
     722            }
    721723        }
    722724
  • profiler-donations-gravityforms/trunk/index.php

    r3227863 r3239895  
    44Plugin URI: https://mediarealm.com.au/
    55Description: Integrates Gravity Forms with Profiler, enabling donation data and more to be sent directly to Profiler.
    6 Version: 2.5.2
     6Version: 2.5.3
    77
    88Author: Media Realm
  • profiler-donations-gravityforms/trunk/readme.txt

    r3227863 r3239895  
    2222
    2323== Changelog ==
     24
     25= 2.5.3 =
     26
     27* Feed List: Don't show feeds for inactive forms and forms in the trash
     28* Fix a fatal error when using Custom Fields in the Donation feed
    2429
    2530= 2.5.2 =
Note: See TracChangeset for help on using the changeset viewer.