Changeset 2108147
- Timestamp:
- 06/18/2019 01:14:39 PM (7 years ago)
- Location:
- sendpress/trunk
- Files:
-
- 3 edited
-
classes/class-sendpress-data.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
sendpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendpress/trunk/classes/class-sendpress-data.php
r2104048 r2108147 1703 1703 1704 1704 if(SendPress_Option::get('import_update')){ 1705 1706 $query ="INSERT IGNORE INTO ". SendPress_Data::subscriber_table(). "(email,firstname,lastname,join_date,registered_ip,phonenumber,salutation,identity_key) VALUES "; 1707 } else { 1708 $query ="INSERT INTO ". SendPress_Data::subscriber_table(). "(email,firstname,lastname,join_date,registered_ip,phonenumber,salutation,identity_key) VALUES "; 1709 } 1705 $query ="INSERT INTO ". SendPress_Data::subscriber_table(). "(email,firstname,lastname,join_date,registered_ip,phonenumber,salutation,identity_key) VALUES "; 1706 } else { 1707 $query ="INSERT IGNORE INTO ". SendPress_Data::subscriber_table(). "(email,firstname,lastname,join_date,registered_ip,phonenumber,salutation,identity_key) VALUES "; 1708 } 1710 1709 1711 1710 $total = count($data); -
sendpress/trunk/readme.txt
r2104048 r2108147 5 5 Requires at least: 4.4 6 6 Tested up to: 5.2.1 7 Stable tag: 1.10.6.1 17 Stable tag: 1.10.6.18 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.18 - 2019.6.18 = 122 * update list import query for better error handling 123 121 124 = 1.10.6.10 - 2019.6.10 = 122 125 * update list import to better handle duplicates … … 1161 1164 == Upgrade Notice == 1162 1165 1166 = 1.10.6.18 = 1167 csv import fix 1168 1163 1169 = 1.10.3.27 = 1164 1170 Multiple bug fixes and prep for php 7.2 -
sendpress/trunk/sendpress.php
r2104048 r2108147 2 2 /* 3 3 Plugin Name: SendPress Newsletters 4 Version: 1.10.6.1 14 Version: 1.10.6.18 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.6.1 1' );22 define( 'SENDPRESS_VERSION', '1.10.6.18' ); 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.