Changeset 3248389
- Timestamp:
- 02/28/2025 10:36:03 AM (13 months ago)
- Location:
- check-email/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
check-email.php (modified) (2 diffs)
-
include/Check_Email_Notify_Tab.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
check-email/trunk/changelog.txt
r3247812 r3248389 1 1 == Changelog == 2 = v2.0.5.1 - 28/02/2025 = 3 - Fixed: No Access to /wp-admin After Update to v2.0.5 #131 4 2 5 = v2.0.5 - 27/02/2025 = 3 6 - Feature: Added Notify users after X (user defined) email sending failures #20 -
check-email/trunk/check-email.php
r3247808 r3248389 4 4 * Description: Check & Log email allows you to test if your WordPress installation is sending emails correctly and logs every email. 5 5 * Author: checkemail 6 * Version: 2.0.5 6 * Version: 2.0.5.1 7 7 * Author URI: https://check-email.tech/ 8 8 * Plugin URI: https://check-email.tech/ … … 42 42 define( 'CK_MAIL_PATH', dirname( __FILE__ ) ); 43 43 define( 'CK_MAIL_URL', plugin_dir_url( __FILE__ ) ); 44 define( 'CK_MAIL_VERSION', '2.0.5 ' );44 define( 'CK_MAIL_VERSION', '2.0.5.1' ); 45 45 46 46 require_once(CK_MAIL_PATH. "/include/helper-function.php" ); -
check-email/trunk/include/Check_Email_Notify_Tab.php
r3247808 r3248389 372 372 public function checkemail_assets_notify() 373 373 { 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 } 374 377 $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : ''; 375 378 $check_email = wpchill_check_email(); … … 517 520 518 521 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 } 519 525 $check_email = wpchill_check_email(); 520 526 $plugin_dir_url = plugin_dir_url($check_email->get_plugin_file()); -
check-email/trunk/readme.txt
r3247812 r3248389 5 5 Tested up to: 6.7 6 6 Requires PHP: 5.6.20 7 Stable tag: 2.0.5 7 Stable tag: 2.0.5.1 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 115 115 == Changelog == 116 116 117 = v2.0.5.1 - 28/02/2025 = 118 - Fixed: No Access to /wp-admin After Update to v2.0.5 #131 119 117 120 = v2.0.5 - 27/02/2025 = 118 121 - Feature: Added Notify users after X (user defined) email sending failures #20 … … 124 127 - Enhancement: Some Enhancement #129 125 128 - Enhancement: Updated screenshots on wp.org #122 126 127 128 129 129 130 = v2.0.4 - 26/12/2024 =
Note: See TracChangeset
for help on using the changeset viewer.