Changeset 3195957
- Timestamp:
- 11/24/2024 05:16:21 PM (14 months ago)
- Location:
- ideal-wp-login-logo-changer
- Files:
-
- 5 added
- 2 edited
-
tags/1.1.7 (added)
-
tags/1.1.7/admin (added)
-
tags/1.1.7/admin/backend.js (added)
-
tags/1.1.7/ideal-wp-login-logo-changer.php (added)
-
tags/1.1.7/readme.txt (added)
-
trunk/ideal-wp-login-logo-changer.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ideal-wp-login-logo-changer/trunk/ideal-wp-login-logo-changer.php
r3141307 r3195957 3 3 Plugin Name: Custom Login Logo 4 4 description: Change the default WordPress logo by uploading your site logo for the login page. 5 Version: 1.1. 65 Version: 1.1.7 6 6 Author: Hakik Zaman 7 7 Author URI: https://github.com/hakikz … … 23 23 24 24 /*Defining Constant*/ 25 define("IWLLC_VERSION", '1.1. 6');25 define("IWLLC_VERSION", '1.1.7'); 26 26 27 27 /*Add body class for options page*/ … … 100 100 <div class="wrap"> 101 101 <h1><?php echo esc_html__( 'Custom Login Logo Settings', 'ideal-wp-login-logo-changer' ); ?></h1> 102 <p><?php echo esc_html__( 'C hange 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> 103 103 <form method="post" action="options.php"> 104 104 <?php settings_fields( 'iwllc_change_login_options_group' ); ?> … … 364 364 if( isset( $_GET['action'] ) && 'reset' === $_GET['action'] ){ 365 365 //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' ) ) { 367 367 die( esc_html__( 'Security check', 'ideal-wp-login-logo-changer' ) ); 368 368 } else { -
ideal-wp-login-logo-changer/trunk/readme.txt
r3141307 r3195957 3 3 Tags: Change WP default logo, WordPress Logo change, Login Logo, Custom logo, WP admin logo, 4 4 Requires at least: 5.8 5 Tested up to: 6. 65 Tested up to: 6.7 6 6 Requires PHP: 5.2.4 7 Stable tag: 1.1. 67 Stable tag: 1.1.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 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 66 71 = 1.1.6 [26-08-2024] = 67 72 * Add: Added a class `iwllc_loaded` for login page body tag.
Note: See TracChangeset
for help on using the changeset viewer.