Plugin Directory

Changeset 3146508


Ignore:
Timestamp:
09/04/2024 02:29:23 PM (16 months ago)
Author:
mdrejon
Message:

Stable release

Location:
quicksnap/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • quicksnap/trunk/Admin/MetaBox.php

    r3146494 r3146508  
    106106        $quicksnap_data = ! empty( $_wtdqs_quicksnap_otp ) && is_array( $_wtdqs_quicksnap_otp ) ? $_wtdqs_quicksnap_otp : array();
    107107
    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']) ) : '';
    110110        $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']) ) : '';
    112112        $quicksnap_data['is_excerpt']            = isset( $_POST['_wtdqs_quicksnap_otp']['is_excerpt'] ) ? 1 : 0;
    113113
  • quicksnap/trunk/App/Shortcode.php

    r3146494 r3146508  
    141141       
    142142        $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']) ) : '';
    144144
    145145        if ( $post_id == 0 ) {
  • quicksnap/trunk/quicksnap.php

    r3146494 r3146508  
    66 * Plugin URI:  https://github.com/mdrejon/quicksnap
    77 * Description: Quicksnap is a plugin that allows you to search for posts and pages in the WordPress admin area.
    8  * Version:     1.0.1
    9  * Author:      mdrejon
     8 * Version:     1.0.2
     9 * Author:      Sydur Rahman
    1010 * Author URI:  https://github.com/mdrejon/
    1111 * License:     GPLv2 or later
    1212 * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    13  * Text Domain: Quicksnap
     13 * Text Domain: quicksnap
    1414 * Domain Path: /languages
    1515 * Requires at least: 4.9
  • quicksnap/trunk/readme.txt

    r3146502 r3146508  
    55Tested up to: 6.6
    66Requires PHP: 7.4
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPL-2.0+
    99License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    1010
    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.
     11Quicksnap boosts your WordPress site's search, making it faster and easier for users to find content, ideal for WooCommerce, blogs, and content-rich sites.
    1212
    1313== Changelog ==
     
    1616
    1717- 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.