Changeset 2935936
- Timestamp:
- 07/08/2023 04:01:50 PM (3 years ago)
- Location:
- terms-descriptions/trunk
- Files:
-
- 3 edited
-
includes/td_admin_terms.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
terms-descriptions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
terms-descriptions/trunk/includes/td_admin_terms.php
r2694981 r2935936 386 386 $where_clause = ''; 387 387 if ( isset( $_GET[ 'term_search' ] ) && '' !== trim( $_GET[ 'term_search' ] ) ) { 388 $search_str = $_GET[ 'term_search' ];388 $search_str = esc_attr( $_GET[ 'term_search' ] ); 389 389 $where_clause = ' WHERE t_term LIKE "%' . $wpdb->esc_like( $search_str ) . '%" '; 390 390 } -
terms-descriptions/trunk/readme.txt
r2902998 r2935936 79 79 == Changelog == 80 80 81 = 3.4.5 = 82 83 * Bug fixes: reflected XSS vulnerability fixed 84 * Wordpress 6.2 support 85 81 86 = 3.4.4 = 82 87 -
terms-descriptions/trunk/terms-descriptions.php
r2902998 r2935936 4 4 Plugin URI: https://simplecoding.org/plagin-wordpress-terms-descriptions 5 5 Description: This plugin allows you to create list of terms and assign links to them. Plugin automatically replaces terms occurrences in your posts with appropriate links. You can control the number of replacements. After activation you can create terms list on plugin administration page (Tools -> Terms Descriptions). 6 Version: 3.4. 46 Version: 3.4.5 7 7 Author: Vladimir Statsenko 8 8 Author URI: https://simplecoding.org
Note: See TracChangeset
for help on using the changeset viewer.