Plugin Directory

Changeset 3462972


Ignore:
Timestamp:
02/16/2026 11:09:55 PM (7 weeks ago)
Author:
naa986
Message:

.v1.1.25 commit

Location:
smtp-mailer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smtp-mailer/trunk/main.php

    r3437358 r3462972  
    22/*
    33Plugin Name: SMTP Mailer
    4 Version: 1.1.24
     4Version: 1.1.25
    55Requires at least: 6.9
    66Plugin URI: https://wphowto.net/smtp-mailer-plugin-for-wordpress-1482
     
    1818class SMTP_MAILER {
    1919   
    20     var $plugin_version = '1.1.24';
     20    var $plugin_version = '1.1.25';
    2121    var $phpmailer_version = '7.0.0';
    2222    var $plugin_url;
     
    912912    //enable debug when sending a test mail
    913913    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        }
    917919    }
    918920
  • smtp-mailer/trunk/readme.txt

    r3437358 r3462972  
    55Requires at least: 6.9
    66Tested up to: 6.9
    7 Stable tag: 1.1.24
     7Stable tag: 1.1.25
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7575
    7676== Changelog ==
     77
     78= 1.1.25 =
     79* Added security for debug output.
    7780
    7881= 1.1.24 =
Note: See TracChangeset for help on using the changeset viewer.