Changeset 3246757
- Timestamp:
- 02/25/2025 10:02:58 PM (13 months ago)
- Location:
- authors-list/trunk
- Files:
-
- 5 edited
-
authors-list.php (modified) (1 diff)
-
backend/includes/class-authors-list-backend.php (modified) (1 diff)
-
backend/includes/class-authors-list-item.php (modified) (1 diff)
-
includes/class-authors-list.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
authors-list/trunk/authors-list.php
r3246746 r3246757 4 4 * Plugin Name: Authors List 5 5 * Description: Display a list of post authors. 6 * Version: 2.0.6 6 * Version: 2.0.6.1 7 7 * Author: WPKube 8 8 * Author URI: http://wpkube.com/ -
authors-list/trunk/backend/includes/class-authors-list-backend.php
r3246746 r3246757 25 25 * @var string 26 26 */ 27 public $version = '2.0.6 ';27 public $version = '2.0.6.1'; 28 28 29 29 /** -
authors-list/trunk/backend/includes/class-authors-list-item.php
r3246746 r3246757 813 813 814 814 // 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'] ) ) ) : ''; 817 817 818 818 // Add filters -
authors-list/trunk/includes/class-authors-list.php
r3246746 r3246757 21 21 * @var string 22 22 */ 23 public $version = '2.0.6 ';23 public $version = '2.0.6.1'; 24 24 25 25 /** -
authors-list/trunk/readme.txt
r3246748 r3246757 113 113 114 114 == Changelog == 115 = 2.0.6 (February 25th, 2025) =115 = 2.0.6.1 (February 25th, 2025) = 116 116 * Security fixes 117 117
Note: See TracChangeset
for help on using the changeset viewer.