Plugin Directory

Changeset 3195957


Ignore:
Timestamp:
11/24/2024 05:16:21 PM (14 months ago)
Author:
Hakik
Message:

v1.1.7: Security: Codebase update based on PCP (Plugin Check Plugin). Update: The plugin settings page description. Compatibility: WordPress 6.7.

Location:
ideal-wp-login-logo-changer
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • ideal-wp-login-logo-changer/trunk/ideal-wp-login-logo-changer.php

    r3141307 r3195957  
    33Plugin Name: Custom Login Logo
    44description: Change the default WordPress logo by uploading your site logo for the login page.
    5 Version: 1.1.6
     5Version: 1.1.7
    66Author: Hakik Zaman
    77Author URI: https://github.com/hakikz
     
    2323
    2424/*Defining Constant*/
    25 define("IWLLC_VERSION", '1.1.6');
     25define("IWLLC_VERSION", '1.1.7');
    2626
    2727/*Add body class for options page*/
     
    100100    <div class="wrap">
    101101        <h1><?php echo esc_html__( 'Custom Login Logo Settings', 'ideal-wp-login-logo-changer' ); ?></h1>
    102         <p><?php echo esc_html__( 'Change the the default WordPress logo and set your own site logo.', 'ideal-wp-login-logo-changer' ); ?></p>
     102        <p><?php echo esc_html__( 'Customize the login page\'s logo, background, link color, and more.', 'ideal-wp-login-logo-changer' ); ?></p>
    103103        <form method="post" action="options.php">
    104104            <?php settings_fields( 'iwllc_change_login_options_group' ); ?>
     
    364364    if( isset( $_GET['action'] ) && 'reset' === $_GET['action'] ){
    365365        //In our file that handles the request, verify the nonce.
    366             if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'change_login_logo-settings' ) ) {
     366            if ( isset( $_REQUEST['_wpnonce'] ) && ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'change_login_logo-settings' ) ) {
    367367                die( esc_html__( 'Security check', 'ideal-wp-login-logo-changer' ) );
    368368            } else {
  • ideal-wp-login-logo-changer/trunk/readme.txt

    r3141307 r3195957  
    33Tags: Change WP default logo, WordPress Logo change, Login Logo, Custom logo, WP admin logo,
    44Requires at least: 5.8
    5 Tested up to: 6.6
     5Tested up to: 6.7
    66Requires PHP: 5.2.4
    7 Stable tag: 1.1.6
     7Stable tag: 1.1.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6464== Changelog ==
    6565
     66= 1.1.7 [24-11-2024] =
     67* Security: Codebase update based on PCP (Plugin Check Plugin).
     68* Update: The plugin settings page description.
     69* Compatibility: WordPress 6.7.
     70
    6671= 1.1.6 [26-08-2024] =
    6772* Add: Added a class `iwllc_loaded` for login page body tag.
Note: See TracChangeset for help on using the changeset viewer.