Changeset 2734709
- Timestamp:
- 05/31/2022 11:50:33 AM (4 years ago)
- Location:
- dadevarzan-wp-project/trunk
- Files:
-
- 2 edited
-
dadevarzan-wp-project.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dadevarzan-wp-project/trunk/dadevarzan-wp-project.php
r2406734 r2734709 5 5 * GitHub Plugin URI: https://github.com/dadevarzan/dadevarzan-wp-project 6 6 * Description: project post type for wordpress 7 * Version: 1.2. 37 * Version: 1.2.4 8 8 * Author: Dadevarzan Team 9 9 * Author URI: http://www.dadevarzan.com … … 480 480 'label' => get_the_title(), 481 481 'cell' => array( 482 '<a href="'. get_permalink().'">'.get_the_title().'</a>',482 '<a href="'.esc_url(get_permalink()).'">'.esc_html(get_the_title()).'</a>', 483 483 get_field('prjct-from_year'), 484 484 get_field('prjct-owner'), … … 529 529 530 530 if (!empty($_GET['search'])) { 531 $query->set( 's', $_GET['search']);531 $query->set( 's',esc_sql($_GET['search']) ); 532 532 } 533 533 … … 725 725 726 726 foreach ($taxonomies as $taxonomy) { 727 $result .= '<option value="'.esc_attr( get_term_link($taxonomy)).'" '.(in_array($taxonomy->term_id, $select_taxonomy_arr) ? 'selected="selected"' : '').'>'.esc_html($taxonomy->name).'</option>';727 $result .= '<option value="'.esc_attr(esc_url(get_term_link($taxonomy))).'" '.(in_array($taxonomy->term_id, $select_taxonomy_arr) ? 'selected="selected"' : '').'>'.esc_html($taxonomy->name).'</option>'; 728 728 } 729 729 -
dadevarzan-wp-project/trunk/readme.txt
r2390727 r2734709 5 5 Tags: Dadevarzan, Dadehvarzan, WordPress, wp, Project 6 6 Requires at least: 4.4.0 7 Tested up to: 5.5.18 Requires PHP: 7. 17 Tested up to: 6.0.0 8 Requires PHP: 7.2 9 9 Stable tag: trunk 10 10 License: GNU General Public License v2.0 or later
Note: See TracChangeset
for help on using the changeset viewer.