Changeset 3172472
- Timestamp:
- 10/20/2024 07:12:22 PM (18 months ago)
- Location:
- terms-descriptions/trunk
- Files:
-
- 3 edited
-
includes/td_admin_terms.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
terms-descriptions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
terms-descriptions/trunk/includes/td_admin_terms.php
r2935936 r3172472 521 521 $total_pages = ceil( $terms_count / $terms_per_page ); 522 522 523 $first_page_link = add_query_arg( 'term_page', false);523 $first_page_link = esc_url( add_query_arg( 'term_page', false ) ); 524 524 525 525 $prev_disabled = ''; 526 526 if ( $cur_page <= 1 ) { 527 $prev_page_link = add_query_arg( 'term_page', false);527 $prev_page_link = esc_url( add_query_arg( 'term_page', false ) ); 528 528 $prev_disabled = ' disabled'; 529 529 } 530 530 else { 531 $prev_page_link = add_query_arg( 'term_page', $cur_page - 1);532 } 533 534 $last_page_link = add_query_arg( 'term_page', $total_pages);531 $prev_page_link = esc_url( add_query_arg( 'term_page', $cur_page - 1 ) ); 532 } 533 534 $last_page_link = esc_url( add_query_arg( 'term_page', $total_pages ) ); 535 535 536 536 $next_disabled = ''; 537 537 if ( $cur_page >= $total_pages ) { 538 $next_page_link = add_query_arg( 'term_page', $total_pages);538 $next_page_link = esc_url( add_query_arg( 'term_page', $total_pages ) ); 539 539 $next_disabled = ' disabled'; 540 540 } 541 541 else { 542 $next_page_link = add_query_arg( 'term_page', $cur_page + 1);542 $next_page_link = esc_url( add_query_arg( 'term_page', $cur_page + 1 ) ); 543 543 } 544 544 -
terms-descriptions/trunk/readme.txt
r3067800 r3172472 3 3 Tags: post, page, links, plugin, link building, cross linking, seo 4 4 Requires at least: 4.1 5 Tested up to: 6. 55 Tested up to: 6.6.2 6 6 Stable tag: trunk 7 7 … … 79 79 == Changelog == 80 80 81 = 3.4.7 = 82 83 * Bug fixes: reflected XSS vulnerability fixed 84 * Wordpress 6.6.2 support 85 81 86 = 3.4.6 = 82 87 -
terms-descriptions/trunk/terms-descriptions.php
r3067800 r3172472 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. 66 Version: 3.4.7 7 7 Author: Vladimir Statsenko 8 8 Author URI: https://simplecoding.org
Note: See TracChangeset
for help on using the changeset viewer.