Plugin Directory

Changeset 3007684


Ignore:
Timestamp:
12/09/2023 08:12:46 PM (2 years ago)
Author:
kunalnagar
Message:

Update to version 3.10.1 from GitHub

Location:
custom-404-pro
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • custom-404-pro/tags/3.10.1/admin/LogsClass.php

    r2912032 r3007684  
    6060            $temp               = array();
    6161            $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);
    6767            array_push( $data, $temp );
    6868        }
  • custom-404-pro/tags/3.10.1/custom-404-pro.php

    r2998167 r3007684  
    55Plugin URI: https://wordpress.org/plugins/custom-404-pro/
    66Description: Override the default 404 page with any page or a custom URL from the Admin Panel.
    7 Version: 3.10.0
     7Version: 3.10.1
    88Author: Kunal Nagar
    99Author URI: https://www.kunalnagar.in
  • custom-404-pro/tags/3.10.1/readme.txt

    r2998167 r3007684  
    55Requires at least: 3.0.1
    66Tested up to: 6.4
    7 Stable tag: 3.10.0
     7Stable tag: 3.10.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5555
    5656== Changelog ==
     57
     58= 3.10.1 =
     59* Fix XSS in Logs page
    5760
    5861= 3.10.0 =
  • custom-404-pro/trunk/admin/LogsClass.php

    r2912032 r3007684  
    6060            $temp               = array();
    6161            $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);
    6767            array_push( $data, $temp );
    6868        }
  • custom-404-pro/trunk/custom-404-pro.php

    r2998167 r3007684  
    55Plugin URI: https://wordpress.org/plugins/custom-404-pro/
    66Description: Override the default 404 page with any page or a custom URL from the Admin Panel.
    7 Version: 3.10.0
     7Version: 3.10.1
    88Author: Kunal Nagar
    99Author URI: https://www.kunalnagar.in
  • custom-404-pro/trunk/readme.txt

    r2998167 r3007684  
    55Requires at least: 3.0.1
    66Tested up to: 6.4
    7 Stable tag: 3.10.0
     7Stable tag: 3.10.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5555
    5656== Changelog ==
     57
     58= 3.10.1 =
     59* Fix XSS in Logs page
    5760
    5861= 3.10.0 =
Note: See TracChangeset for help on using the changeset viewer.