Changeset 3462972
- Timestamp:
- 02/16/2026 11:09:55 PM (7 weeks ago)
- Location:
- smtp-mailer/trunk
- Files:
-
- 2 edited
-
main.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smtp-mailer/trunk/main.php
r3437358 r3462972 2 2 /* 3 3 Plugin Name: SMTP Mailer 4 Version: 1.1.2 44 Version: 1.1.25 5 5 Requires at least: 6.9 6 6 Plugin URI: https://wphowto.net/smtp-mailer-plugin-for-wordpress-1482 … … 18 18 class SMTP_MAILER { 19 19 20 var $plugin_version = '1.1.2 4';20 var $plugin_version = '1.1.25'; 21 21 var $phpmailer_version = '7.0.0'; 22 22 var $plugin_url; … … 912 912 //enable debug when sending a test mail 913 913 if(isset($_POST['smtp_mailer_send_test_email'])){ 914 $phpmailer->SMTPDebug = 4; 915 // Ask for HTML-friendly debug output 916 $phpmailer->Debugoutput = 'html'; 914 if(is_admin() && current_user_can('manage_options')){ 915 $phpmailer->SMTPDebug = 4; 916 // Ask for HTML-friendly debug output 917 $phpmailer->Debugoutput = 'html'; 918 } 917 919 } 918 920 -
smtp-mailer/trunk/readme.txt
r3437358 r3462972 5 5 Requires at least: 6.9 6 6 Tested up to: 6.9 7 Stable tag: 1.1.2 47 Stable tag: 1.1.25 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 75 75 76 76 == Changelog == 77 78 = 1.1.25 = 79 * Added security for debug output. 77 80 78 81 = 1.1.24 =
Note: See TracChangeset
for help on using the changeset viewer.