Changeset 2104048
- Timestamp:
- 06/11/2019 02:25:12 PM (7 years ago)
- Location:
- sendpress/trunk
- Files:
-
- 3 edited
-
classes/class-sendpress-data.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sendpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendpress/trunk/classes/class-sendpress-data.php
r2059327 r2104048 1719 1719 $email = $line[$map['email']]; 1720 1720 1721 if(is_email($email) ){1721 if(is_email($email) && !in_array(esc_sql($email), $emails_added)){ 1722 1722 $values .= $wpdb->prepare(" %s ," , $email); 1723 1723 //$values.="'".esc_sql($email,$wpdb->dbh)."',"; -
sendpress/trunk/readme.txt
r2091007 r2104048 4 4 Tags: newsletter, newsletters, manager newsletter, newsletter signup, newsletter widget, subscribers, subscription, email marketing, email, emailing, smtp, sendpress, sendgrid, mandrill, mailchimp 5 5 Requires at least: 4.4 6 Tested up to: 5.2 7 Stable tag: 1.10. 5.196 Tested up to: 5.2.1 7 Stable tag: 1.10.6.11 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 119 119 Previous releases can be downloaded from [GitHub](https://github.com/brewlabs/sendpress/releases) 120 120 121 = 1.10.6.10 - 2019.6.10 = 122 * update list import to better handle duplicates 123 121 124 = 1.10.5.19 - 2019.5.19 = 122 125 * update list sync -
sendpress/trunk/sendpress.php
r2091007 r2104048 2 2 /* 3 3 Plugin Name: SendPress Newsletters 4 Version: 1.10. 5.194 Version: 1.10.6.11 5 5 Plugin URI: https://sendpress.com 6 6 Description: Easy to manage Newsletters for WordPress. … … 20 20 define( 'SENDPRESS_API_VERSION', 1 ); 21 21 define( 'SENDPRESS_MINIMUM_WP_VERSION', '3.6' ); 22 define( 'SENDPRESS_VERSION', '1.10. 5.19' );22 define( 'SENDPRESS_VERSION', '1.10.6.11' ); 23 23 define( 'SENDPRESS_URL', plugin_dir_url( __FILE__ ) ); 24 24 define( 'SENDPRESS_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.