Plugin Directory

Changeset 1827152


Ignore:
Timestamp:
02/22/2018 05:29:29 PM (8 years ago)
Author:
sparkpost
Message:

Release of v3.1.1

Location:
sparkpost/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sparkpost/trunk/readme.txt

    r1819135 r1827152  
    44Requires at least: 4.3
    55Tested up to: 4.9.4
    6 Stable tag: 3.1.0
     6Stable tag: 3.1.1
    77License: GPLv2 or later
    88
     
    5252
    5353== Changelog ==
     54= 3.1.1 =
     55- Avoid db checking if email logging is not enabled
     56
    5457= 3.1.0 =
    5558- Improved UI
  • sparkpost/trunk/sparkpost.class.php

    r1819135 r1827152  
    8686    function db_update_check()
    8787    {
     88        //no need to check db version if email logging is not enabled
     89        $mailer = self::get_setting('sending_method');
     90        $email_logging_enabled = self::get_setting('log_emails');
     91        if($mailer != 'api' ||  !$email_logging_enabled) {
     92          return false;
     93        }
     94
    8895        if (get_site_option('sp_db_version') != $this->db_version) {
    8996            return $this->install_db();
  • sparkpost/trunk/wordpress-sparkpost.php

    r1819135 r1827152  
    66Plugin URI: http://sparkpost.com/
    77Description: Send all your email from Wordpress through SparkPost, the world's most advanced email delivery service.
    8 Version: 3.1.0
     8Version: 3.1.1
    99Author: SparkPost
    1010Author URI: http://sparkpost.com
     
    1919define('WPSP_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('WPSP_PLUGIN_PATH', WPSP_PLUGIN_DIR . basename(__FILE__));
    21 define('WPSP_PLUGIN_VERSION', '3.1.0');
     21define('WPSP_PLUGIN_VERSION', '3.1.1');
    2222
    2323require_once(WPSP_PLUGIN_DIR . 'sparkpost.class.php');
Note: See TracChangeset for help on using the changeset viewer.