Changeset 3112411
- Timestamp:
- 07/04/2024 11:33:06 AM (21 months ago)
- Location:
- check-email/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
check-email.php (modified) (2 diffs)
-
include/Core/UI/Setting/Check_Email_Core_Setting.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
check-email/trunk/changelog.txt
r3107534 r3112411 1 1 == Changelog == 2 3 = v1.0.13.1 - 04/07/2024 = 4 - Bug: save button does not work after last update. 2 5 3 6 = v1.0.13 - 25/06/2024 = -
check-email/trunk/check-email.php
r3107534 r3112411 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: 1.0.13 6 * Version: 1.0.13.1 7 7 * Author URI: https://check-email.tech/ 8 8 * License: GPLv3 or later … … 41 41 define( 'CK_MAIL_PATH', dirname( __FILE__ ) ); 42 42 define( 'CK_MAIL_URL', plugin_dir_url( __FILE__ ) ); 43 define( 'CK_MAIL_VERSION', '1.0.13 ' );43 define( 'CK_MAIL_VERSION', '1.0.13.1' ); 44 44 45 45 if ( is_admin() ) { -
check-email/trunk/include/Core/UI/Setting/Check_Email_Core_Setting.php
r3107534 r3112411 67 67 'is_retention_amount_enable'=>false, 68 68 'is_retention_period_enable'=>false, 69 'retention_amount'=> '',69 'retention_amount'=>0, 70 70 'forward_to' => '', 71 71 'forward_cc' => '', … … 560 560 $field_name = $this->section->option_name . '[' . $args['id'] . ']'; 561 561 echo sprintf( 562 '<input id="check-email-retention_amount" class="check-email-js-amount-enable" type="number" min=" 1" name="%s" value="%s" />',562 '<input id="check-email-retention_amount" class="check-email-js-amount-enable" type="number" min="0" name="%s" value="%s" />', 563 563 esc_attr( $field_name ), 564 564 esc_attr( $field_value ) … … 594 594 595 595 echo sprintf( 596 '<input id="check-email-log_retention_period_in_days" class="check-email-js-cusotm-in-day" type="number" min=" 1" name="%s" value="%s" />',596 '<input id="check-email-log_retention_period_in_days" class="check-email-js-cusotm-in-day" type="number" min="0" name="%s" value="%s" />', 597 597 esc_attr( $field_name ), 598 598 esc_attr( $field_value ) -
check-email/trunk/readme.txt
r3107534 r3112411 5 5 Tested up to: 6.5 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.0.13 7 Stable tag: 1.0.13.1 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 76 76 == Changelog == 77 77 78 = v1.0.13.1 - 04/07/2024 = 79 - Bug: save button does not work after last update. 80 78 81 = v1.0.13 - 25/06/2024 = 79 82 - Feature: Added Log Retention Period #69 … … 114 117 - Fixed: Incompatibility with Post SMTP ( [#51]( https://github.com/WPChill/check-email/issues/51) ) 115 118 116 = v1.0.6 - 02/05/2022 =117 - Fixed: Security, sanitization and escaping118 119 119 Full changelog available [ at changelog.txt](https://plugins.svn.wordpress.org/check-email/trunk/changelog.txt)
Note: See TracChangeset
for help on using the changeset viewer.