Plugin Directory

Changeset 3290001


Ignore:
Timestamp:
05/08/2025 03:48:40 PM (11 months ago)
Author:
gplsaver
Message:

WooCommerce 9.8.4
WP 6.8
Fix plain emails

Location:
woo-rfq-for-woocommerce
Files:
115 added
5 edited

Legend:

Unmodified
Added
Removed
  • woo-rfq-for-woocommerce/trunk/changelog.txt

    r3270682 r3290001  
    2929= 1.9.179 11/22/2024 =
    3030languge file corruption fixed
     31
     32= 2.2.4 5/8/2025 =
     33WooCommerce 9.8.4
     34WP 6.8
     35Fix plain emails
    3136
    3237= 1.9.178 11/22/2024 =
  • woo-rfq-for-woocommerce/trunk/includes/classes/checkout/gpls_woo_rfq_checkout.php

    r3270682 r3290001  
    213213                    &&isset($_REQUEST['ukey'])){
    214214                   $ukey= sanitize_text_field( wp_unslash($_REQUEST['ukey']));
    215                    np_write_log( $_REQUEST,__FILE__,__LINE__);
     215                 //  np_write_log( $_REQUEST,__FILE__,__LINE__);
    216216               }else{
    217217
  • woo-rfq-for-woocommerce/trunk/includes/classes/emails/NP_Html2Text.php

    r3256816 r3290001  
    2020//removed namespace
    2121//changed class name
    22 // 
     22
    2323class NP_Html2Text
    2424{
     
    310310    public function print_text()
    311311    {
    312         print wp_kses_post($this->getText());
     312        print $this->getText();
    313313    }
    314314
     
    375375        $text = preg_replace($this->search, $this->replace, $text);
    376376        $text = preg_replace_callback($this->callbackSearch, array($this, 'pregCallback'), $text);
    377         $text = wp_strip_tags($text);
     377        $text = strip_tags($text);
    378378        $text = preg_replace($this->entSearch, $this->entReplace, $text);
    379379        $text = html_entity_decode($text, $this->htmlFuncFlags, self::ENCODING);
     
    658658    }
    659659}
    660 // 
  • woo-rfq-for-woocommerce/trunk/readme.txt

    r3270682 r3290001  
    44Tags: woocommerce quote request
    55Requires at least: 6.3
    6 Tested up to: 6.7
    7 Requires PHP: 8.2
    8 WC tested up to: 9.7.1
     6Tested up to: 6.8
     7Requires PHP: 7.4
     8WC tested up to: 9.8.4
    99Stable tag: 2.2.3
    1010License: GPLv2
     
    209209== Changelog ==
    210210
    211 = 2.2.3 4/10/2025 =
    212 add null check for quote request at checkout
     211= 2.2.4 5/8/2025 =
     212WooCommerce 9.8.4
     213WP 6.8
     214Fix plain emails
    213215
    214216
    215217== Upgrade Notice ==
    216218
    217 = 2.2.3 4/10/2025 =
    218 add null check for quote request at checkout
    219 
    220 
    221 
    222 
     219= 2.2.4 5/8/2025 =
     220WooCommerce 9.8.4
     221WP 6.8
     222Fix plain emails
     223
     224
     225
     226
  • woo-rfq-for-woocommerce/trunk/woo-rfq-for-woocommerce.php

    r3270682 r3290001  
    33 * Plugin Name: NP Quote Request for WooCommerce
    44 * Description: NP Quote Request for WooCommerce enables your customers to easily submit a quote request to your WooCommerce store. It is very flexible and can be used in a variety of store settings. NP Quote Request for WooCommerce enables you to generate leads and engage with your customers!
    5  * Version: 2.2.3
     5 * Version: 2.2.4
    66 * Contributors: Neah Plugins,gplsaver
    77 * Author: Neah Plugins
     
    99 * Donate link: https://www.neahplugins.com/
    1010 * Requires at least: 6.3
    11  * Tested up to: 6.7
     11 * Tested up to: 6.8
    1212 * Requires PHP: 7.4
    13  * WC tested up to: 9.7.1
     13 * WC tested up to: 9.8.4
    1414 * Text Domain: woo-rfq-for-woocommerce
    1515 * Domain Path: /languages/
Note: See TracChangeset for help on using the changeset viewer.