Changeset 2455527
- Timestamp:
- 01/13/2021 12:20:41 PM (5 years ago)
- Location:
- add-on-contact-form-7-mailpoet/trunk
- Files:
-
- 5 edited
-
add-on-contact-form-7-mailpoet.php (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
includes/class-mailpoet-cf7-integration.php (modified) (1 diff)
-
includes/class-mailpoet-cf7-submit-form.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
add-on-contact-form-7-mailpoet/trunk/add-on-contact-form-7-mailpoet.php
r2389673 r2455527 3 3 * Plugin Name: Add-on Contact Form 7 - Mailpoet 3 4 4 * Description: Add a MailPoet 3 signup field to your Contact Form 7 forms. 5 * Version: 1.3.1 45 * Version: 1.3.15 6 6 * Author: Tikweb 7 7 * Author URI: http://www.tikweb.dk/ -
add-on-contact-form-7-mailpoet/trunk/changelog.txt
r2389673 r2455527 1 1 == Changelog == 2 = 1.3.15 - 2021-01-07 = 3 * Fixed error created by a debug file. 4 * Bug fixed for PHP Deprecated: implode function in PHP 7.4. 5 2 6 = 1.3.14 - 2020-10-28 = 3 7 * Fixed and updated bugs caused by MailPoet version 3.51.0 -
add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-integration.php
r2070718 r2455527 120 120 121 121 if ( ! $tag->has_option( 'subscriber-choice' ) ) { 122 $atts['value'] = ( $list_array ) ? implode( $list_array, ',') : '0';122 $atts['value'] = ( $list_array ) ? implode( ',', $list_array ) : '0'; 123 123 } 124 124 -
add-on-contact-form-7-mailpoet/trunk/includes/class-mailpoet-cf7-submit-form.php
r2389673 r2455527 136 136 $lastname = ''; 137 137 } 138 139 $output = print_r($form_tags, true);140 file_put_contents("api.txt",$output);141 138 142 139 //Save all list -
add-on-contact-form-7-mailpoet/trunk/readme.txt
r2389673 r2455527 6 6 Tested up to: 5.5.1 7 7 Requires PHP: 7.0 8 Stable tag: 1.3.1 48 Stable tag: 1.3.15 9 9 10 10 Add a MailPoet 3 signup field to your Contact Form 7 forms.
Note: See TracChangeset
for help on using the changeset viewer.