Changeset 3122825
- Timestamp:
- 07/21/2024 08:30:57 PM (21 months ago)
- Location:
- custom-404-pro
- Files:
-
- 6 edited
- 1 copied
-
tags/3.11.2 (copied) (copied from custom-404-pro/trunk)
-
tags/3.11.2/admin/AdminClass.php (modified) (1 diff)
-
tags/3.11.2/custom-404-pro.php (modified) (1 diff)
-
tags/3.11.2/readme.txt (modified) (2 diffs)
-
trunk/admin/AdminClass.php (modified) (1 diff)
-
trunk/custom-404-pro.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-404-pro/tags/3.11.2/admin/AdminClass.php
r3122823 r3122825 56 56 if ( current_user_can( 'administrator' ) ) { 57 57 if ( array_key_exists( 'c4pmessage', $_REQUEST ) ) { 58 $message = urldecode( sanitize_text_field( $_REQUEST['c4pmessage']) );58 $message = esc_html( urldecode( sanitize_text_field( $_REQUEST['c4pmessage'] ) ) ); 59 59 if ( array_key_exists( 'c4pmessageType', $_REQUEST ) ) { 60 $messageType = sanitize_text_field( $_REQUEST['c4pmessageType']);60 $messageType = esc_html( sanitize_text_field( $_REQUEST['c4pmessageType'] ) ); 61 61 } 62 62 $html .= '<div class="notice notice-' . $messageType . ' is-dismissible">'; -
custom-404-pro/tags/3.11.2/custom-404-pro.php
r3122823 r3122825 5 5 Plugin URI: https://wordpress.org/plugins/custom-404-pro/ 6 6 Description: Override the default 404 page with any page or a custom URL from the Admin Panel. 7 Version: 3.11. 17 Version: 3.11.2 8 8 Author: Kunal Nagar 9 9 Author URI: https://www.kunalnagar.in -
custom-404-pro/tags/3.11.2/readme.txt
r3122823 r3122825 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.5 7 Stable tag: 3.11. 17 Stable tag: 3.11.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 56 56 == Changelog == 57 58 = 3.11.2 = 59 * Fix vuln in admin notices 57 60 58 61 = 3.11.1 = -
custom-404-pro/trunk/admin/AdminClass.php
r3122823 r3122825 56 56 if ( current_user_can( 'administrator' ) ) { 57 57 if ( array_key_exists( 'c4pmessage', $_REQUEST ) ) { 58 $message = urldecode( sanitize_text_field( $_REQUEST['c4pmessage']) );58 $message = esc_html( urldecode( sanitize_text_field( $_REQUEST['c4pmessage'] ) ) ); 59 59 if ( array_key_exists( 'c4pmessageType', $_REQUEST ) ) { 60 $messageType = sanitize_text_field( $_REQUEST['c4pmessageType']);60 $messageType = esc_html( sanitize_text_field( $_REQUEST['c4pmessageType'] ) ); 61 61 } 62 62 $html .= '<div class="notice notice-' . $messageType . ' is-dismissible">'; -
custom-404-pro/trunk/custom-404-pro.php
r3122823 r3122825 5 5 Plugin URI: https://wordpress.org/plugins/custom-404-pro/ 6 6 Description: Override the default 404 page with any page or a custom URL from the Admin Panel. 7 Version: 3.11. 17 Version: 3.11.2 8 8 Author: Kunal Nagar 9 9 Author URI: https://www.kunalnagar.in -
custom-404-pro/trunk/readme.txt
r3122823 r3122825 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.5 7 Stable tag: 3.11. 17 Stable tag: 3.11.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 56 56 == Changelog == 57 58 = 3.11.2 = 59 * Fix vuln in admin notices 57 60 58 61 = 3.11.1 =
Note: See TracChangeset
for help on using the changeset viewer.