Plugin Directory

Changeset 3246757


Ignore:
Timestamp:
02/25/2025 10:02:58 PM (13 months ago)
Author:
wpkube
Message:

trunk 2.0.6.1

Location:
authors-list/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • authors-list/trunk/authors-list.php

    r3246746 r3246757  
    44 * Plugin Name:       Authors List
    55 * Description:       Display a list of post authors.
    6  * Version:           2.0.6
     6 * Version:           2.0.6.1
    77 * Author:            WPKube
    88 * Author URI:        http://wpkube.com/
  • authors-list/trunk/backend/includes/class-authors-list-backend.php

    r3246746 r3246757  
    2525         * @var string
    2626         */
    27         public $version = '2.0.6';
     27        public $version = '2.0.6.1';
    2828
    2929        /**
  • authors-list/trunk/backend/includes/class-authors-list-item.php

    r3246746 r3246757  
    813813       
    814814            // Search parameters
    815             $search_param = isset( $_POST['searchParam'] ) ? sanitize_text_field( wp_unslash( $_POST['searchParam'] ) ) : '';
    816             $search_column = isset( $_POST['searchColumn'] ) ? sanitize_text_field( wp_unslash( $_POST['searchColumn'] ) ) : '';
     815            $search_param = isset($_POST['searchParam']) ? preg_replace('/[^a-zA-Z0-9\s,_-]/', '', sanitize_text_field( wp_unslash($_POST['searchParam'] ) ) ) : '';
     816            $search_column = isset($_POST['searchColumn']) ? preg_replace('/[^a-zA-Z0-9\s,_-]/', '', sanitize_text_field( wp_unslash($_POST['searchColumn'] ) ) ) : '';
    817817       
    818818            // Add filters
  • authors-list/trunk/includes/class-authors-list.php

    r3246746 r3246757  
    2121     * @var string
    2222     */
    23     public $version = '2.0.6';
     23    public $version = '2.0.6.1';
    2424
    2525    /**
  • authors-list/trunk/readme.txt

    r3246748 r3246757  
    113113
    114114== Changelog ==
    115 = 2.0.6 (February 25th, 2025) =
     115= 2.0.6.1 (February 25th, 2025) =
    116116* Security fixes
    117117
Note: See TracChangeset for help on using the changeset viewer.