Changeset 2116901
- Timestamp:
- 07/03/2019 12:53:00 PM (7 years ago)
- Location:
- add-on-gravity-forms-mailpoet
- Files:
-
- 4 edited
- 7 copied
-
tags/1.1.10 (copied) (copied from add-on-gravity-forms-mailpoet/trunk)
-
tags/1.1.10/add-on-gravity-forms-mailpoet.php (copied) (copied from add-on-gravity-forms-mailpoet/trunk/add-on-gravity-forms-mailpoet.php)
-
tags/1.1.10/array_column.php (copied) (copied from add-on-gravity-forms-mailpoet/trunk/array_column.php)
-
tags/1.1.10/changelog.txt (copied) (copied from add-on-gravity-forms-mailpoet/trunk/changelog.txt)
-
tags/1.1.10/class-gfnewmailpoetaddon.php (copied) (copied from add-on-gravity-forms-mailpoet/trunk/class-gfnewmailpoetaddon.php)
-
tags/1.1.10/mailpoet-fields.php (copied) (copied from add-on-gravity-forms-mailpoet/trunk/mailpoet-fields.php)
-
tags/1.1.10/readme.txt (copied) (copied from add-on-gravity-forms-mailpoet/trunk/readme.txt)
-
trunk/add-on-gravity-forms-mailpoet.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/class-gfnewmailpoetaddon.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
add-on-gravity-forms-mailpoet/trunk/add-on-gravity-forms-mailpoet.php
r2116071 r2116901 3 3 * Plugin Name: Add-on Gravity Forms - Mailpoet 3 4 4 * Description: Add a MailPoet 3 signup field to your Gravity Forms. 5 * Version: 1.1.1 05 * Version: 1.1.11 6 6 * Author: Tikweb 7 7 * Author URI: http://www.tikweb.dk/ … … 405 405 $wc_segment = Segment::whereEqual('type', Segment::TYPE_WC_USERS)->findArray(); 406 406 407 if (($key = array_search($wp_segment[0]['id'], $mailpoetlists)) || ($key = array_search($wc_segment[0]['id'], $mailpoetlists)) !== FALSE) { 407 if (($key = array_search($wp_segment[0]['id'], $mailpoetlists)) ) { 408 unset($mailpoetlists[$key]); 409 } 410 411 if (($key = array_search($wc_segment[0]['id'], $mailpoetlists)) ) { 408 412 unset($mailpoetlists[$key]); 409 413 } -
add-on-gravity-forms-mailpoet/trunk/changelog.txt
r2116071 r2116901 1 1 == Changelog == 2 3 = 1.1.11 - 2019-07-03 = 4 * Support API to subscribe/unsubscribe 2 5 3 6 = 1.1.10 - 2019-07-02 = -
add-on-gravity-forms-mailpoet/trunk/class-gfnewmailpoetaddon.php
r2116071 r2116901 140 140 $wc_segment = Segment::whereEqual('type', Segment::TYPE_WC_USERS)->findArray(); 141 141 142 if (($key = array_search($wp_segment[0]['id'], $mailpoetlists)) || ($key = array_search($wc_segment[0]['id'], $mailpoetlists)) !== FALSE) { 142 if (($key = array_search($wp_segment[0]['id'], $mailpoetlists)) ) { 143 unset($mailpoetlists[$key]); 144 } 145 146 if (($key = array_search($wc_segment[0]['id'], $mailpoetlists)) ) { 143 147 unset($mailpoetlists[$key]); 144 148 } -
add-on-gravity-forms-mailpoet/trunk/readme.txt
r2116071 r2116901 6 6 Tested up to: 5.2.2 7 7 Requires PHP: 5.2 8 Stable tag: 1.1.1 08 Stable tag: 1.1.11 9 9 10 10 Create MailPoet 3 newsletter subscribers from Gravity Form entries.
Note: See TracChangeset
for help on using the changeset viewer.