Plugin Directory

Changeset 3284375


Ignore:
Timestamp:
04/29/2025 08:21:35 PM (11 months ago)
Author:
breadintegrations
Message:

Version 3.5.8 changes

Location:
bread-finance/trunk
Files:
1 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • bread-finance/trunk/assets/js/v2/main.js

    r3179107 r3284375  
    11/**
    2  * Bread v3.5.7
     2 * Bread v3.5.8
    33 *
    44 * @author Maritim, Kiprotich
  • bread-finance/trunk/bread-finance.php

    r3179107 r3284375  
    66 * Author: Bread Financial
    77 * Author URI: https://payments.breadfinancial.com/
    8  * Version: 3.5.7
     8 * Version: 3.5.8
    99 * Text Domain: bread_finance
    1010 * Domain Path: /i18n/languages/
     
    206206           
    207207            //Require minimums and constants
    208             define('WC_' . $tenant . '_VERSION', '3.5.7');
     208            define('WC_' . $tenant . '_VERSION', '3.5.8');
    209209            define('WC_' . $tenant . '_MIN_PHP_VER', '5.6.0');
    210210            define('WC_' . $tenant . '_MIN_WC_VER', '3.4.0');
  • bread-finance/trunk/classes/class-bread-finance-admin-carts-helper.php

    r3129146 r3284375  
    145145                    "itemUrl" => $detailUrl,
    146146                    "imageUrl" => $imageUrl,
    147                     "description" => $product->get_description(),
     147                    "description" => preg_replace('/[^a-zA-Z0-9_%\[().\]\\/- ]/s', '', $product->get_description()),
    148148                    "shippingCost" => array(
    149149                       
  • bread-finance/trunk/classes/class-bread-finance-options-cart.php

    r3065172 r3284375  
    259259            }
    260260
    261             $required = array('first_name', 'last_name', 'address_1', 'postcode', 'city', 'state', 'phone');
     261            $required = array('first_name', 'last_name', 'address_1', 'postcode', 'city', 'state');
    262262
    263263            $customer = WC()->customer;
Note: See TracChangeset for help on using the changeset viewer.