Changeset 2366554
- Timestamp:
- 08/21/2020 01:27:26 PM (6 years ago)
- Location:
- sendpress/trunk
- Files:
-
- 3 edited
-
classes/class-sendpress-phpmailer.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sendpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendpress/trunk/classes/class-sendpress-phpmailer.php
r1598832 r2366554 8 8 } 9 9 10 if(!class_exists('PHPMailer')){ 11 require( ABSPATH . WPINC . '/class-phpmailer.php'); 10 11 12 13 global $wp_version; 14 if ( version_compare( $wp_version, '5.5', '>=' ) ) { 15 if(!class_exists('PHPMailer\PHPMailer\PHPMailer')) { 16 require(ABSPATH . WPINC .'/PHPMailer/PHPMailer.php'); 17 require(ABSPATH . WPINC . '/PHPMailer/SMTP.php'); 18 require(ABSPATH . WPINC . '/PHPMailer/Exception.php'); 19 } 20 21 class SendPress_PHPMailer extends PHPMailer\PHPMailer\PHPMailer { 22 23 } 24 } else { 25 if(!class_exists('PHPMailer')) { 26 require(ABSPATH . WPINC . '/class-phpmailer.php'); 27 } 28 class SendPress_PHPMailer extends PHPMailer { 29 30 } 12 31 } 13 32 14 class SendPress_PHPMailer extends PHPMailer {15 33 16 } -
sendpress/trunk/readme.txt
r2339909 r2366554 4 4 Tags: newsletter, newsletters, manager newsletter, newsletter signup, newsletter widget, subscribers, subscription, email marketing, email, emailing, smtp, sendpress, sendgrid, mandrill, mailchimp 5 5 Requires at least: 4.4 6 Tested up to: 5. 47 Stable tag: 1.20. 7.136 Tested up to: 5.5 7 Stable tag: 1.20.8.21 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.20.8.21 - 2020.8.21 = 122 * Update for WP 5.5 123 121 124 = 1.20.7.13 - 2020.7.13 = 122 125 * Security fixes for settings page -
sendpress/trunk/sendpress.php
r2339909 r2366554 2 2 /* 3 3 Plugin Name: SendPress Newsletters 4 Version: 1.20. 7.134 Version: 1.20.8.21 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.20. 7.13' );22 define( 'SENDPRESS_VERSION', '1.20.8.21' ); 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.