Plugin Directory

Changeset 2737347


Ignore:
Timestamp:
06/04/2022 01:26:11 PM (4 years ago)
Author:
hutanatu
Message:

1.1.3

  • Fixed: PHP Notice
Location:
htp-smtp
Files:
33 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • htp-smtp/trunk/htp-smtp.php

    r2653048 r2737347  
    44 * Plugin URI:        https://hutanatu.com/plugin/htp-smtp/
    55 * Description:       HTP SMTP can help us to send emails via SMTP instead of the PHP mail() function and email logger built-in.
    6  * Version:           1.1.2
     6 * Version:           1.1.3
    77 * Author:            HuTaNaTu
    88 * Author URI:        https://hutanatu.com/
  • htp-smtp/trunk/inc/Setup.php

    r2653048 r2737347  
    7373            if ( is_network_admin() ) {
    7474                $network_options       = get_site_option( Network_Admin_Menus::OPTION_NAME );
    75                 $delete_network_option = $network_options['delete_options'];
     75                $delete_network_option = isset( $network_options['delete_options'] ) ? $network_options['delete_options'] : null;
    7676                if ( $delete_network_option === 'yes' ) {
    7777                    delete_site_option( Network_Admin_Menus::OPTION_NAME );
     
    8383                $site_id       = get_current_blog_id();
    8484                $options       = get_blog_option( $site_id, Admin_Menus::OPTION_NAME );
    85                 $delete_option = $options['delete_options'];
     85                $delete_option = isset( $options['delete_options'] ) ? $options['delete_options'] : null;
    8686                if ( $delete_option === 'yes' ) {
    8787                    delete_blog_option( $site_id, Admin_Menus::OPTION_NAME );
     
    9090        } else {
    9191            $options       = get_option( Admin_Menus::OPTION_NAME );
    92             $delete_option = $options['delete_options'];
     92            $delete_option = isset( $options['delete_options'] ) ? $options['delete_options'] : null;
    9393            if ( $delete_option === 'yes' ) {
    9494                delete_option( Admin_Menus::OPTION_NAME );
  • htp-smtp/trunk/readme.txt

    r2689526 r2737347  
    1 === HTP SMTP ===
    2 Tags: htp smtp,wp smtp,wp mail smtp,smtp,mail,email,mailer,wp mail,gmail,yahoo,mail smtp,ssl,tls,wpmu,mu,multisite,network
     1=== HTP SMTP - WP Mail SMTP, Amazon SES, SendGrid, MailGun and Any SMTP Connector Plugin ===
     2Contributors: hutanatu
     3Tags: htp smtp,wp smtp,wp mail smtp,smtp,mail,wp mail,gmail,mail smtp,ssl,multisite
    34License: GPLv3
    4 Tested up to: 5.9.1
    5 Stable tag: 1.1.2
     5Tested up to: 6.0
     6Stable tag: 1.1.3
    67
    78HTP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
     
    2223== Changelog ==
    2324
     25= 1.1.3 =
     26* Fixed: PHP Notice
     27
    2428= 1.1.2 =
    2529* Fixed: PHP Notice
Note: See TracChangeset for help on using the changeset viewer.