Plugin Directory

Changeset 3286461


Ignore:
Timestamp:
05/02/2025 06:16:56 PM (11 months ago)
Author:
wpmobo
Message:

1.1.4

  • Resolved WordPress 6.8 compatibility issue.
  • Resolved PHP error issue.
Location:
admintosh
Files:
75 added
4 edited

Legend:

Unmodified
Added
Removed
  • admintosh/trunk/admin/assets/css/admintosh-admin.css

    r3248536 r3286461  
    2828  line-height: 1.2;
    2929  padding: 20px 0px;
    30   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     30  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    3131  color: #fff;
    3232  text-align: center;
     
    4040.admintosh-admin-wrap ul.settings-menu li a {
    4141  padding: 15px 14px;
    42   border-top: 1px solid #0e6b0e26;
     42  border-top: 1px solid #2B388F26;
    4343  background: #fff;
    4444  margin-bottom: 0;
     
    5252.admintosh-admin-wrap ul.settings-menu li.active a,
    5353.admintosh-admin-wrap ul.settings-menu li:hover a {
    54   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     54  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    5555  color: #fff;
    5656}
     
    372372  margin-top: 0px;
    373373  margin-bottom: 30px;
    374   border-bottom: 2px solid #7ed321;
     374  border-bottom: 2px solid #262261;
    375375  gap: 15px;
    376376}
     
    394394.inner-tab .inner-tab-active,
    395395.inner-tab a:hover {
    396   background-image: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     396  background-image: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    397397  color: #fff;
    398398}
     
    440440}
    441441.admin-admintosh .button-primary {
    442   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     442  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    443443  color: #fff;
    444444  border-radius: 4px;
     
    452452.admin-admintosh .button-primary:focus,
    453453.admin-admintosh .button-primary:hover {
    454   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     454  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    455455  color: #fff;
    456456  opacity: 0.8;
     
    631631  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    632632  padding: 15px 22px;
    633   border: 1px solid #7ed321;
     633  border: 1px solid #262261;
    634634  margin-right: 20px;
    635635  margin-bottom: 20px;
     
    705705
    706706.toggle__input:checked + .toggle-track .toggle-indicator {
    707   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     707  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    708708  transform: translateX(30px);
    709709}
     
    757757
    758758input:checked + .switcher-slider {
    759   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     759  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    760760}
    761761
     
    825825}
    826826.help-links a {
    827   background: linear-gradient(140deg, #0e6b0e 0%, #7ed321 100%);
     827  background: linear-gradient(140deg, #2B388F 0%, #262261 100%);
    828828  color: #fff;
    829829  border-radius: 4px;
     
    855855.admintosh-img-button-switch .radio-img:hover img,
    856856.admintosh-img-button-switch .radio-img > input:checked + img {
    857   border: 2px solid #0e6b0e;
     857  border: 2px solid #2B388F;
    858858  border-radius: 7px;
    859859}
  • admintosh/trunk/admintosh.php

    r3260416 r3286461  
    44Plugin URI:   http://wpmobo.com/admintosh
    55Description:  WordPress admin customization and security tools
    6 Version:      1.1.3
     6Version:      1.1.4
    77Author:       wpmobo
    88Author URI:   http://wpmobo.com
     
    1818// Define Constants for direct access alert message.
    1919if( !defined( 'ADMINTOSH_ALERT_MSG' ) )
    20     define( 'ADMINTOSH_ALERT_MSG', esc_html__( 'You should not access this file directly.!', 'admintosh' ) );
     20    define( 'ADMINTOSH_ALERT_MSG', 'You should not access this file directly.!' );
    2121
    2222// Define Constants for direct access alert message.
  • admintosh/trunk/inc/Recaptcha.php

    r3258796 r3286461  
    2323        $this->options = get_option( ADMINTOSH_OPTION_NAME );
    2424
    25         $this->errorMsg = esc_html__( 'CAPTCHA verification failed. Please try again.', 'admintosh' );
    26 
    2725        $get_options = $this->options;
    2826
    2927        add_action('init', [ $this, 'init_session' ], 1 );
     28        add_action('init', [ $this, 'init_task' ] );
     29
    3030        if( !empty( $get_options['active_login_captcha'] ) ) {
    3131
     
    8181        }
    8282       
     83    }
     84
     85    public function init_task() {
     86        $this->errorMsg = esc_html__( 'CAPTCHA verification failed. Please try again.', 'admintosh' );
    8387    }
    8488
  • admintosh/trunk/readme.txt

    r3260416 r3286461  
    55Requires PHP: 7.4
    66Requires at least: 6.5
    7 Tested up to: 6.7.1
    8 Stable tag: 1.1.3
    9 Version: 1.1.3
     7Tested up to: 6.8
     8Stable tag: 1.1.4
     9Version: 1.1.4
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    200200== Changelog ==
    201201
     202= 1.1.4 =
     203
     204- Resolved WordPress 6.8 compatibility issue.
     205- Resolved PHP error issue.
     206
    202207= 1.1.3 =
    203208
Note: See TracChangeset for help on using the changeset viewer.