Changeset 2734678
- Timestamp:
- 05/31/2022 11:05:06 AM (4 years ago)
- Location:
- dadevarzan-wp-book/trunk
- Files:
-
- 2 edited
-
dadevarzan-wp-book.php (modified) (5 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dadevarzan-wp-book/trunk/dadevarzan-wp-book.php
r2390712 r2734678 5 5 * GitHub Plugin URI: https://github.com/dadevarzan/dadevarzan-wp-book 6 6 * Description: book 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 … … 417 417 'label' => get_the_title(), 418 418 'cell' => array( 419 '<a href="'. get_permalink().'">'.get_the_title().'</a>',419 '<a href="'.esc_url(get_permalink()).'">'.esc_html(get_the_title()).'</a>', 420 420 get_field('dv_bk_author'), 421 421 get_field('dv_bk_translator'), … … 444 444 445 445 ob_start(); 446 echo '<div class="fl-node-'. $uniqueID.'">';446 echo '<div class="fl-node-'.esc_attr($uniqueID).'">'; 447 447 FLBuilder::render_module_html( 'pp-table', $tblSettings ); 448 448 echo '</div>'; … … 467 467 468 468 if (!empty($_GET['search'])) { 469 $query->set('s', $_GET['search']);469 $query->set('s', esc_sql($_GET['search'])); 470 470 } 471 471 … … 478 478 479 479 $meta_query_arr[] = array( 480 'key' => $meta_key,481 'value' => $meta_value,480 'key' => esc_sql($meta_key), 481 'value' => esc_sql($meta_value), 482 482 'compare' => 'LIKE', 483 483 ); -
dadevarzan-wp-book/trunk/readme.txt
r2390712 r2734678 5 5 Tags: Dadevarzan, Dadehvarzan, WordPress, wp, Book, Book post type, Book CPT 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.