Changeset 3007684
- Timestamp:
- 12/09/2023 08:12:46 PM (2 years ago)
- Location:
- custom-404-pro
- Files:
-
- 6 edited
- 1 copied
-
tags/3.10.1 (copied) (copied from custom-404-pro/trunk)
-
tags/3.10.1/admin/LogsClass.php (modified) (1 diff)
-
tags/3.10.1/custom-404-pro.php (modified) (1 diff)
-
tags/3.10.1/readme.txt (modified) (2 diffs)
-
trunk/admin/LogsClass.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.10.1/admin/LogsClass.php
r2912032 r3007684 60 60 $temp = array(); 61 61 $temp['id'] = $sql_data[ $i ]->id; 62 $temp['ip'] = $sql_data[ $i ]->ip;63 $temp['path'] = $sql_data[ $i ]->path;64 $temp['referer'] = $sql_data[ $i ]->referer;65 $temp['user_agent'] = $sql_data[ $i ]->user_agent;66 $temp['created'] = $sql_data[ $i ]->created;62 $temp['ip'] = sanitize_text_field($sql_data[ $i ]->ip); 63 $temp['path'] = sanitize_text_field($sql_data[ $i ]->path); 64 $temp['referer'] = sanitize_text_field($sql_data[ $i ]->referer); 65 $temp['user_agent'] = sanitize_text_field($sql_data[ $i ]->user_agent); 66 $temp['created'] = sanitize_text_field($sql_data[ $i ]->created); 67 67 array_push( $data, $temp ); 68 68 } -
custom-404-pro/tags/3.10.1/custom-404-pro.php
r2998167 r3007684 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.10. 07 Version: 3.10.1 8 8 Author: Kunal Nagar 9 9 Author URI: https://www.kunalnagar.in -
custom-404-pro/tags/3.10.1/readme.txt
r2998167 r3007684 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.4 7 Stable tag: 3.10. 07 Stable tag: 3.10.1 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.10.1 = 59 * Fix XSS in Logs page 57 60 58 61 = 3.10.0 = -
custom-404-pro/trunk/admin/LogsClass.php
r2912032 r3007684 60 60 $temp = array(); 61 61 $temp['id'] = $sql_data[ $i ]->id; 62 $temp['ip'] = $sql_data[ $i ]->ip;63 $temp['path'] = $sql_data[ $i ]->path;64 $temp['referer'] = $sql_data[ $i ]->referer;65 $temp['user_agent'] = $sql_data[ $i ]->user_agent;66 $temp['created'] = $sql_data[ $i ]->created;62 $temp['ip'] = sanitize_text_field($sql_data[ $i ]->ip); 63 $temp['path'] = sanitize_text_field($sql_data[ $i ]->path); 64 $temp['referer'] = sanitize_text_field($sql_data[ $i ]->referer); 65 $temp['user_agent'] = sanitize_text_field($sql_data[ $i ]->user_agent); 66 $temp['created'] = sanitize_text_field($sql_data[ $i ]->created); 67 67 array_push( $data, $temp ); 68 68 } -
custom-404-pro/trunk/custom-404-pro.php
r2998167 r3007684 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.10. 07 Version: 3.10.1 8 8 Author: Kunal Nagar 9 9 Author URI: https://www.kunalnagar.in -
custom-404-pro/trunk/readme.txt
r2998167 r3007684 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.4 7 Stable tag: 3.10. 07 Stable tag: 3.10.1 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.10.1 = 59 * Fix XSS in Logs page 57 60 58 61 = 3.10.0 =
Note: See TracChangeset
for help on using the changeset viewer.