Plugin Directory

Changeset 3112411


Ignore:
Timestamp:
07/04/2024 11:33:06 AM (21 months ago)
Author:
checkemail
Message:

1.0.13.1

Location:
check-email/trunk
Files:
4 edited

Legend:

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

    r3107534 r3112411  
    11== Changelog ==
     2
     3= v1.0.13.1 - 04/07/2024 =
     4- Bug: save button does not work after last update.
    25
    36= v1.0.13 - 25/06/2024 =
  • check-email/trunk/check-email.php

    r3107534 r3112411  
    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:                  1.0.13
     6* Version:                  1.0.13.1
    77* Author URI:               https://check-email.tech/
    88* License:                  GPLv3 or later
     
    4141define( 'CK_MAIL_PATH', dirname( __FILE__ ) );
    4242define( 'CK_MAIL_URL', plugin_dir_url( __FILE__ ) );
    43 define( 'CK_MAIL_VERSION', '1.0.13' );
     43define( 'CK_MAIL_VERSION', '1.0.13.1' );
    4444
    4545if ( is_admin() ) {
  • check-email/trunk/include/Core/UI/Setting/Check_Email_Core_Setting.php

    r3107534 r3112411  
    6767                'is_retention_amount_enable'=>false,           
    6868                'is_retention_period_enable'=>false,           
    69                 'retention_amount'=>'',         
     69                'retention_amount'=>0,         
    7070                'forward_to'          => '',           
    7171                'forward_cc'          => '',           
     
    560560        $field_name  = $this->section->option_name . '[' . $args['id'] . ']';       
    561561        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" />',
    563563            esc_attr( $field_name ),
    564564            esc_attr( $field_value )
     
    594594       
    595595        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" />',
    597597            esc_attr( $field_name ),
    598598            esc_attr( $field_value )
  • check-email/trunk/readme.txt

    r3107534 r3112411  
    55Tested up to: 6.5
    66Requires PHP: 5.6.20
    7 Stable tag: 1.0.13
     7Stable tag: 1.0.13.1
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7676== Changelog ==
    7777
     78= v1.0.13.1 - 04/07/2024 =
     79- Bug: save button does not work after last update.
     80
    7881= v1.0.13 - 25/06/2024 =
    7982- Feature: Added Log Retention Period #69
     
    114117- Fixed: Incompatibility with Post SMTP ( [#51]( https://github.com/WPChill/check-email/issues/51) )
    115118
    116 = v1.0.6 - 02/05/2022 =
    117 - Fixed: Security, sanitization and escaping
    118 
    119119Full 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.