Changeset 3239895
- Timestamp:
- 02/13/2025 07:58:52 AM (10 months ago)
- Location:
- profiler-donations-gravityforms
- Files:
-
- 5 edited
- 5 copied
-
tags/2.5.3 (copied) (copied from profiler-donations-gravityforms/trunk)
-
tags/2.5.3/class-feedlist-gfaddon.php (modified) (2 diffs)
-
tags/2.5.3/class-profilercommon.php (copied) (copied from profiler-donations-gravityforms/trunk/class-profilercommon.php) (1 diff)
-
tags/2.5.3/class-profilerdonate-gfaddon.php (copied) (copied from profiler-donations-gravityforms/trunk/class-profilerdonate-gfaddon.php)
-
tags/2.5.3/index.php (copied) (copied from profiler-donations-gravityforms/trunk/index.php) (1 diff)
-
tags/2.5.3/readme.txt (copied) (copied from profiler-donations-gravityforms/trunk/readme.txt) (1 diff)
-
trunk/class-feedlist-gfaddon.php (modified) (2 diffs)
-
trunk/class-profilercommon.php (modified) (1 diff)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
profiler-donations-gravityforms/tags/2.5.3/class-feedlist-gfaddon.php
r3211379 r3239895 41 41 array( 42 42 '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.', 44 44 'capability' => 'gravityforms_edit_settings', 45 45 'fields' => array( … … 112 112 } 113 113 114 if($form['is_trash'] == true) { 115 continue; 116 } 117 118 if($form['is_active'] == false) { 119 continue; 120 } 121 114 122 $found_feeds = true; 115 123 -
profiler-donations-gravityforms/tags/2.5.3/class-profilercommon.php
r3227863 r3239895 718 718 // Remove whitespace 719 719 foreach($profiler_query as $key => $val) { 720 $profiler_query[$key] = trim($val); 720 if(is_string($val)) { 721 $profiler_query[$key] = trim($val); 722 } 721 723 } 722 724 -
profiler-donations-gravityforms/tags/2.5.3/index.php
r3227863 r3239895 4 4 Plugin URI: https://mediarealm.com.au/ 5 5 Description: Integrates Gravity Forms with Profiler, enabling donation data and more to be sent directly to Profiler. 6 Version: 2.5. 26 Version: 2.5.3 7 7 8 8 Author: Media Realm -
profiler-donations-gravityforms/tags/2.5.3/readme.txt
r3227863 r3239895 22 22 23 23 == 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 24 29 25 30 = 2.5.2 = -
profiler-donations-gravityforms/trunk/class-feedlist-gfaddon.php
r3211379 r3239895 41 41 array( 42 42 '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.', 44 44 'capability' => 'gravityforms_edit_settings', 45 45 'fields' => array( … … 112 112 } 113 113 114 if($form['is_trash'] == true) { 115 continue; 116 } 117 118 if($form['is_active'] == false) { 119 continue; 120 } 121 114 122 $found_feeds = true; 115 123 -
profiler-donations-gravityforms/trunk/class-profilercommon.php
r3227863 r3239895 718 718 // Remove whitespace 719 719 foreach($profiler_query as $key => $val) { 720 $profiler_query[$key] = trim($val); 720 if(is_string($val)) { 721 $profiler_query[$key] = trim($val); 722 } 721 723 } 722 724 -
profiler-donations-gravityforms/trunk/index.php
r3227863 r3239895 4 4 Plugin URI: https://mediarealm.com.au/ 5 5 Description: Integrates Gravity Forms with Profiler, enabling donation data and more to be sent directly to Profiler. 6 Version: 2.5. 26 Version: 2.5.3 7 7 8 8 Author: Media Realm -
profiler-donations-gravityforms/trunk/readme.txt
r3227863 r3239895 22 22 23 23 == 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 24 29 25 30 = 2.5.2 =
Note: See TracChangeset
for help on using the changeset viewer.