Plugin Directory

Changeset 2104048


Ignore:
Timestamp:
06/11/2019 02:25:12 PM (7 years ago)
Author:
brewlabs
Message:

Update list sync

Location:
sendpress/trunk
Files:
3 edited

Legend:

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

    r2059327 r2104048  
    17191719                $email = $line[$map['email']];
    17201720
    1721                 if(is_email($email)){
     1721                if(is_email($email) && !in_array(esc_sql($email), $emails_added)){
    17221722                    $values .= $wpdb->prepare(" %s ," , $email);
    17231723                    //$values.="'".esc_sql($email,$wpdb->dbh)."',";
  • sendpress/trunk/readme.txt

    r2091007 r2104048  
    44Tags: newsletter, newsletters, manager newsletter, newsletter signup, newsletter widget, subscribers, subscription, email marketing, email, emailing, smtp, sendpress, sendgrid, mandrill, mailchimp
    55Requires at least: 4.4
    6 Tested up to: 5.2
    7 Stable tag: 1.10.5.19
     6Tested up to: 5.2.1
     7Stable tag: 1.10.6.11
    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.10 - 2019.6.10 =
     122* update list import to better handle duplicates
     123
    121124= 1.10.5.19 - 2019.5.19 =
    122125* update list sync
  • sendpress/trunk/sendpress.php

    r2091007 r2104048  
    22/*
    33Plugin Name: SendPress Newsletters
    4 Version: 1.10.5.19
     4Version: 1.10.6.11
    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.5.19' );
     22define( 'SENDPRESS_VERSION', '1.10.6.11' );
    2323define( 'SENDPRESS_URL', plugin_dir_url( __FILE__ ) );
    2424define( 'SENDPRESS_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.