Changeset 2661165
- Timestamp:
- 01/21/2022 12:18:48 AM (4 years ago)
- Location:
- sendpress/trunk
- Files:
-
- 8 edited
-
classes/class-sendpress-security.php (modified) (1 diff)
-
classes/class-sendpress-sender-gmail.php (modified) (1 diff)
-
classes/class-sendpress-sender-spnl.php (modified) (1 diff)
-
classes/class-sendpress-sender-website.php (modified) (1 diff)
-
classes/class-sendpress-sender.php (modified) (2 diffs)
-
classes/class-sendpress-template.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
sendpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendpress/trunk/classes/class-sendpress-security.php
r1598832 r2661165 249 249 break; 250 250 case 'post_html': 251 $output = filter_input(INPUT_POST, $field, FILTER_SANITIZE_ MAGIC_QUOTES);251 $output = filter_input(INPUT_POST, $field, FILTER_SANITIZE_ADD_SLASHES); 252 252 break; 253 253 case 'post_url': -
sendpress/trunk/classes/class-sendpress-sender-gmail.php
r1757752 r2661165 40 40 41 41 42 function send_email($to, $subject, $html, $text, $istest = false ,$sid , $list_id, $report_id, $fromname, $fromemail){42 function send_email($to, $subject, $html, $text, $istest = false ,$sid =0, $list_id=0, $report_id=0,$fromname='', $fromemail='' ){ 43 43 44 44 $phpmailer = new SendPress_PHPMailer; -
sendpress/trunk/classes/class-sendpress-sender-spnl.php
r1895422 r2661165 49 49 } 50 50 51 function send_email($to, $subject, $html, $text, $istest = false ,$sid , $list_id, $report_id, $fromname, $fromemail){51 function send_email($to, $subject, $html, $text, $istest = false ,$sid =0, $list_id=0, $report_id=0,$fromname='', $fromemail='' ){ 52 52 53 53 //$user = SendPress_Option::get( 'mandrilluser' ); -
sendpress/trunk/classes/class-sendpress-sender-website.php
r1664392 r2661165 89 89 } 90 90 91 function send_email($to, $subject, $html, $text, $istest = false, $sid , $list_id, $report_id,$fromname, $fromemail){91 function send_email($to, $subject, $html, $text, $istest = false, $sid =0, $list_id=0, $report_id=0,$fromname='', $fromemail='' ){ 92 92 93 93 $this->emailText = $text; -
sendpress/trunk/classes/class-sendpress-sender.php
r1664392 r2661165 74 74 } 75 75 76 function send_email_old($to, $subject, $html, $text, $istest = false, $sid , $list_id, $report_id){76 function send_email_old($to, $subject, $html, $text, $istest = false, $sid =0, $list_id=0, $report_id=0 ){ 77 77 78 78 … … 80 80 } 81 81 82 function send_email_new($to, $subject, $html, $text, $istest = false, $sid , $list_id, $report_id, $fromname, $fromemail){82 function send_email_new($to, $subject, $html, $text, $istest = false, $sid=0, $list_id=0, $report_id=0, $fromname=0, $fromemail =0){ 83 83 return false; 84 84 } -
sendpress/trunk/classes/class-sendpress-template.php
r1844586 r2661165 734 734 } 735 735 $dom->strictErrorChecking = false; 736 SendPress_Error::log("logger"); 737 SendPress_Error::log($content); 738 if($content == ''){ 739 return $content; 740 } 736 741 @$dom->loadHtml($content); 737 742 $aTags = $dom->getElementsByTagName('a'); -
sendpress/trunk/readme.txt
r2509704 r2661165 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. 77 Stable tag: 1.2 1.4.56 Tested up to: 5.8.3 7 Stable tag: 1.22.1.20 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 119 119 Previous releases can be downloaded from [GitHub](https://github.com/brewlabs/sendpress/releases) 120 = 1.22.1.20- 2022.1.20 = 121 * Update/fixes for php 8 122 120 123 = 1.21.4.5- 2021.4.5 = 121 124 * Update for error in API … … 1202 1205 == Upgrade Notice == 1203 1206 1207 = 1.22.1.20 = 1208 updates and fixes for php 8+ 1209 1204 1210 = 1.10.6.18 = 1205 1211 csv import fix -
sendpress/trunk/sendpress.php
r2509704 r2661165 2 2 /* 3 3 Plugin Name: SendPress Newsletters 4 Version: 1.2 1.4.54 Version: 1.22.1.20 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.2 1.4.5' );22 define( 'SENDPRESS_VERSION', '1.22.1.20' ); 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.