Changeset 3146508
- Timestamp:
- 09/04/2024 02:29:23 PM (16 months ago)
- Location:
- quicksnap/trunk
- Files:
-
- 4 edited
-
Admin/MetaBox.php (modified) (1 diff)
-
App/Shortcode.php (modified) (1 diff)
-
quicksnap.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quicksnap/trunk/Admin/MetaBox.php
r3146494 r3146508 106 106 $quicksnap_data = ! empty( $_wtdqs_quicksnap_otp ) && is_array( $_wtdqs_quicksnap_otp ) ? $_wtdqs_quicksnap_otp : array(); 107 107 108 $quicksnap_data['post_type'] = isset( $_POST['_wtdqs_quicksnap_otp']['post_type'] ) ? sanitize_text_field( $_POST['_wtdqs_quicksnap_otp']['post_type']) : '';109 $quicksnap_data['maximum_items_display'] = isset( $_POST['_wtdqs_quicksnap_otp']['maximum_items_display'] ) ? sanitize_text_field( $_POST['_wtdqs_quicksnap_otp']['maximum_items_display']) : '';108 $quicksnap_data['post_type'] = isset( $_POST['_wtdqs_quicksnap_otp']['post_type'] ) ? sanitize_text_field( wp_unslash($_POST['_wtdqs_quicksnap_otp']['post_type']) ) : ''; 109 $quicksnap_data['maximum_items_display'] = isset( $_POST['_wtdqs_quicksnap_otp']['maximum_items_display'] ) ? sanitize_text_field( wp_unslash($_POST['_wtdqs_quicksnap_otp']['maximum_items_display']) ) : ''; 110 110 $quicksnap_data['is_thumbnail'] = isset( $_POST['_wtdqs_quicksnap_otp']['is_thumbnail'] ) ? 1 : 0; 111 $quicksnap_data['thumbnail_position'] = isset( $_POST['_wtdqs_quicksnap_otp']['thumbnail_position'] ) ? sanitize_text_field( $_POST['_wtdqs_quicksnap_otp']['thumbnail_position']) : '';111 $quicksnap_data['thumbnail_position'] = isset( $_POST['_wtdqs_quicksnap_otp']['thumbnail_position'] ) ? sanitize_text_field( wp_unslash($_POST['_wtdqs_quicksnap_otp']['thumbnail_position']) ) : ''; 112 112 $quicksnap_data['is_excerpt'] = isset( $_POST['_wtdqs_quicksnap_otp']['is_excerpt'] ) ? 1 : 0; 113 113 -
quicksnap/trunk/App/Shortcode.php
r3146494 r3146508 141 141 142 142 $post_id = isset( $_POST['postId'] ) ? intval( $_POST['postId'] ) : 0; 143 $search_value = isset( $_POST['searchValue'] ) ? sanitize_text_field( $_POST['searchValue']) : '';143 $search_value = isset( $_POST['searchValue'] ) ? sanitize_text_field( wp_unslash($_POST['searchValue']) ) : ''; 144 144 145 145 if ( $post_id == 0 ) { -
quicksnap/trunk/quicksnap.php
r3146494 r3146508 6 6 * Plugin URI: https://github.com/mdrejon/quicksnap 7 7 * Description: Quicksnap is a plugin that allows you to search for posts and pages in the WordPress admin area. 8 * Version: 1.0. 19 * Author: mdrejon8 * Version: 1.0.2 9 * Author: Sydur Rahman 10 10 * Author URI: https://github.com/mdrejon/ 11 11 * License: GPLv2 or later 12 12 * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 13 * Text Domain: Quicksnap13 * Text Domain: quicksnap 14 14 * Domain Path: /languages 15 15 * Requires at least: 4.9 -
quicksnap/trunk/readme.txt
r3146502 r3146508 5 5 Tested up to: 6.6 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPL-2.0+ 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 10 10 11 Quicksnap is a powerful and versatile search plugin designed to enhance your WordPress site’s search functionality. Whether you’re running a WooCommerce store, a blog, or a content-rich site, Quicksnap makes finding content easier and faster for your visitors.11 Quicksnap boosts your WordPress site's search, making it faster and easier for users to find content, ideal for WooCommerce, blogs, and content-rich sites. 12 12 13 13 == Changelog == … … 16 16 17 17 - Initial stable realese 18 19 = 1.0.1 - 02/09/2024 = 20 21 - Review update 22 23 = 1.0.2 - 02/09/2024 = 24 25 - Stable realese
Note: See TracChangeset
for help on using the changeset viewer.