Changeset 1827152
- Timestamp:
- 02/22/2018 05:29:29 PM (8 years ago)
- Location:
- sparkpost/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
sparkpost.class.php (modified) (1 diff)
-
wordpress-sparkpost.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sparkpost/trunk/readme.txt
r1819135 r1827152 4 4 Requires at least: 4.3 5 5 Tested up to: 4.9.4 6 Stable tag: 3.1. 06 Stable tag: 3.1.1 7 7 License: GPLv2 or later 8 8 … … 52 52 53 53 == Changelog == 54 = 3.1.1 = 55 - Avoid db checking if email logging is not enabled 56 54 57 = 3.1.0 = 55 58 - Improved UI -
sparkpost/trunk/sparkpost.class.php
r1819135 r1827152 86 86 function db_update_check() 87 87 { 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 88 95 if (get_site_option('sp_db_version') != $this->db_version) { 89 96 return $this->install_db(); -
sparkpost/trunk/wordpress-sparkpost.php
r1819135 r1827152 6 6 Plugin URI: http://sparkpost.com/ 7 7 Description: Send all your email from Wordpress through SparkPost, the world's most advanced email delivery service. 8 Version: 3.1. 08 Version: 3.1.1 9 9 Author: SparkPost 10 10 Author URI: http://sparkpost.com … … 19 19 define('WPSP_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('WPSP_PLUGIN_PATH', WPSP_PLUGIN_DIR . basename(__FILE__)); 21 define('WPSP_PLUGIN_VERSION', '3.1. 0');21 define('WPSP_PLUGIN_VERSION', '3.1.1'); 22 22 23 23 require_once(WPSP_PLUGIN_DIR . 'sparkpost.class.php');
Note: See TracChangeset
for help on using the changeset viewer.