Changeset 2737347
- Timestamp:
- 06/04/2022 01:26:11 PM (4 years ago)
- Location:
- htp-smtp
- Files:
-
- 33 added
- 1 deleted
- 5 edited
-
assets/banner-772x250.png (modified) (previous)
-
assets/icon-128x128.png (modified) (previous)
-
tags/1.1.3 (added)
-
tags/1.1.3/htp-smtp.php (added)
-
tags/1.1.3/inc (added)
-
tags/1.1.3/inc/Admin_Menus.php (added)
-
tags/1.1.3/inc/Main.php (added)
-
tags/1.1.3/inc/Network_Admin_Menus.php (added)
-
tags/1.1.3/inc/Setup.php (added)
-
tags/1.1.3/inc/index.php (added)
-
tags/1.1.3/index.php (added)
-
tags/1.1.3/languages (added)
-
tags/1.1.3/languages/htp-smtp-es_CO.mo (added)
-
tags/1.1.3/languages/htp-smtp-es_CO.po (added)
-
tags/1.1.3/languages/htp-smtp-es_EC.mo (added)
-
tags/1.1.3/languages/htp-smtp-es_EC.po (added)
-
tags/1.1.3/languages/htp-smtp-es_ES.mo (added)
-
tags/1.1.3/languages/htp-smtp-es_ES.po (added)
-
tags/1.1.3/languages/htp-smtp-es_VE.mo (added)
-
tags/1.1.3/languages/htp-smtp-es_VE.po (added)
-
tags/1.1.3/languages/index.php (added)
-
tags/1.1.3/readme.txt (added)
-
tags/1.1.3/vendor (added)
-
tags/1.1.3/vendor/autoload.php (added)
-
tags/1.1.3/vendor/composer (added)
-
tags/1.1.3/vendor/composer/ClassLoader.php (added)
-
tags/1.1.3/vendor/composer/InstalledVersions.php (added)
-
tags/1.1.3/vendor/composer/LICENSE (added)
-
tags/1.1.3/vendor/composer/autoload_classmap.php (added)
-
tags/1.1.3/vendor/composer/autoload_namespaces.php (added)
-
tags/1.1.3/vendor/composer/autoload_psr4.php (added)
-
tags/1.1.3/vendor/composer/autoload_real.php (added)
-
tags/1.1.3/vendor/composer/autoload_static.php (added)
-
tags/1.1.3/vendor/composer/installed.json (added)
-
tags/1.1.3/vendor/composer/installed.php (added)
-
trunk/composer.json (deleted)
-
trunk/htp-smtp.php (modified) (1 diff)
-
trunk/inc/Setup.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
htp-smtp/trunk/htp-smtp.php
r2653048 r2737347 4 4 * Plugin URI: https://hutanatu.com/plugin/htp-smtp/ 5 5 * 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. 26 * Version: 1.1.3 7 7 * Author: HuTaNaTu 8 8 * Author URI: https://hutanatu.com/ -
htp-smtp/trunk/inc/Setup.php
r2653048 r2737347 73 73 if ( is_network_admin() ) { 74 74 $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; 76 76 if ( $delete_network_option === 'yes' ) { 77 77 delete_site_option( Network_Admin_Menus::OPTION_NAME ); … … 83 83 $site_id = get_current_blog_id(); 84 84 $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; 86 86 if ( $delete_option === 'yes' ) { 87 87 delete_blog_option( $site_id, Admin_Menus::OPTION_NAME ); … … 90 90 } else { 91 91 $options = get_option( Admin_Menus::OPTION_NAME ); 92 $delete_option = $options['delete_options'];92 $delete_option = isset( $options['delete_options'] ) ? $options['delete_options'] : null; 93 93 if ( $delete_option === 'yes' ) { 94 94 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 === 2 Contributors: hutanatu 3 Tags: htp smtp,wp smtp,wp mail smtp,smtp,mail,wp mail,gmail,mail smtp,ssl,multisite 3 4 License: GPLv3 4 Tested up to: 5.9.15 Stable tag: 1.1. 25 Tested up to: 6.0 6 Stable tag: 1.1.3 6 7 7 8 HTP SMTP can help us to send emails via SMTP instead of the PHP mail() function. … … 22 23 == Changelog == 23 24 25 = 1.1.3 = 26 * Fixed: PHP Notice 27 24 28 = 1.1.2 = 25 29 * Fixed: PHP Notice
Note: See TracChangeset
for help on using the changeset viewer.