Plugin Directory

Changeset 3248389


Ignore:
Timestamp:
02/28/2025 10:36:03 AM (13 months ago)
Author:
checkemail
Message:

hode fir 2.0.5.1

Location:
check-email/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • check-email/trunk/changelog.txt

    r3247812 r3248389  
    11== Changelog ==
     2= v2.0.5.1 - 28/02/2025 =
     3- Fixed: No Access to /wp-admin After Update to v2.0.5 #131
     4
    25= v2.0.5 - 27/02/2025 =
    36- Feature: Added Notify users after X (user defined) email sending failures #20
  • check-email/trunk/check-email.php

    r3247808 r3248389  
    44* Description:              Check & Log email allows you to test if your WordPress installation is sending emails correctly and logs every email.
    55* Author:                   checkemail
    6 * Version:                  2.0.5
     6* Version:                  2.0.5.1
    77* Author URI:               https://check-email.tech/
    88* Plugin URI:               https://check-email.tech/
     
    4242define( 'CK_MAIL_PATH', dirname( __FILE__ ) );
    4343define( 'CK_MAIL_URL', plugin_dir_url( __FILE__ ) );
    44 define( 'CK_MAIL_VERSION', '2.0.5' );
     44define( 'CK_MAIL_VERSION', '2.0.5.1' );
    4545
    4646require_once(CK_MAIL_PATH. "/include/helper-function.php" );
  • check-email/trunk/include/Check_Email_Notify_Tab.php

    r3247808 r3248389  
    372372    public function checkemail_assets_notify()
    373373    {
     374        if (!isset($this->notify_options['is_enable']) || empty($this->notify_options['is_enable']) || !isset($this->notify_options['is_enable_by_push']) || empty($this->notify_options['is_enable_by_push'])) {
     375            return;
     376        }
    374377        $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '';
    375378        $check_email    = wpchill_check_email();
     
    517520
    518521    function serve_firebase_sw() {
     522        if (!isset($this->notify_options['is_enable']) || empty($this->notify_options['is_enable']) || !isset($this->notify_options['is_enable_by_push']) || empty($this->notify_options['is_enable_by_push'])) {
     523            return;
     524        }
    519525        $check_email    = wpchill_check_email();
    520526        $plugin_dir_url = plugin_dir_url($check_email->get_plugin_file());
  • check-email/trunk/readme.txt

    r3247812 r3248389  
    55Tested up to: 6.7
    66Requires PHP: 5.6.20
    7 Stable tag: 2.0.5
     7Stable tag: 2.0.5.1
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    115115== Changelog ==
    116116
     117= v2.0.5.1 - 28/02/2025 =
     118- Fixed: No Access to /wp-admin After Update to v2.0.5 #131
     119
    117120= v2.0.5 - 27/02/2025 =
    118121- Feature: Added Notify users after X (user defined) email sending failures #20
     
    124127- Enhancement: Some Enhancement #129
    125128- Enhancement: Updated screenshots on wp.org #122
    126 
    127 
    128129
    129130= v2.0.4 - 26/12/2024 =
Note: See TracChangeset for help on using the changeset viewer.