Plugin Directory

Changeset 2108147


Ignore:
Timestamp:
06/18/2019 01:14:39 PM (7 years ago)
Author:
brewlabs
Message:

Import updates

Location:
sendpress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sendpress/trunk/classes/class-sendpress-data.php

    r2104048 r2108147  
    17031703
    17041704        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        }
    17101709
    17111710        $total = count($data);
  • sendpress/trunk/readme.txt

    r2104048 r2108147  
    55Requires at least: 4.4
    66Tested up to: 5.2.1
    7 Stable tag: 1.10.6.11
     7Stable tag: 1.10.6.18
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    119119Previous releases can be downloaded from [GitHub](https://github.com/brewlabs/sendpress/releases)
    120120
     121= 1.10.6.18 - 2019.6.18 =
     122* update list import query for better error handling
     123
    121124= 1.10.6.10 - 2019.6.10 =
    122125* update list import to better handle duplicates
     
    11611164== Upgrade Notice ==
    11621165
     1166= 1.10.6.18 =
     1167csv import fix
     1168
    11631169= 1.10.3.27 =
    11641170Multiple bug fixes and prep for php 7.2
  • sendpress/trunk/sendpress.php

    r2104048 r2108147  
    22/*
    33Plugin Name: SendPress Newsletters
    4 Version: 1.10.6.11
     4Version: 1.10.6.18
    55Plugin URI: https://sendpress.com
    66Description: Easy to manage Newsletters for WordPress.
     
    2020define( 'SENDPRESS_API_VERSION', 1 );
    2121define( 'SENDPRESS_MINIMUM_WP_VERSION', '3.6' );
    22 define( 'SENDPRESS_VERSION', '1.10.6.11' );
     22define( 'SENDPRESS_VERSION', '1.10.6.18' );
    2323define( 'SENDPRESS_URL', plugin_dir_url( __FILE__ ) );
    2424define( 'SENDPRESS_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.