Changeset 3284375
- Timestamp:
- 04/29/2025 08:21:35 PM (11 months ago)
- Location:
- bread-finance/trunk
- Files:
-
- 1 added
- 1 deleted
- 4 edited
-
README.md (deleted)
-
assets/js/v2/main.js (modified) (1 diff)
-
bread-finance.php (modified) (2 diffs)
-
classes/class-bread-finance-admin-carts-helper.php (modified) (1 diff)
-
classes/class-bread-finance-options-cart.php (modified) (1 diff)
-
readme.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
bread-finance/trunk/assets/js/v2/main.js
r3179107 r3284375 1 1 /** 2 * Bread v3.5. 72 * Bread v3.5.8 3 3 * 4 4 * @author Maritim, Kiprotich -
bread-finance/trunk/bread-finance.php
r3179107 r3284375 6 6 * Author: Bread Financial 7 7 * Author URI: https://payments.breadfinancial.com/ 8 * Version: 3.5. 78 * Version: 3.5.8 9 9 * Text Domain: bread_finance 10 10 * Domain Path: /i18n/languages/ … … 206 206 207 207 //Require minimums and constants 208 define('WC_' . $tenant . '_VERSION', '3.5. 7');208 define('WC_' . $tenant . '_VERSION', '3.5.8'); 209 209 define('WC_' . $tenant . '_MIN_PHP_VER', '5.6.0'); 210 210 define('WC_' . $tenant . '_MIN_WC_VER', '3.4.0'); -
bread-finance/trunk/classes/class-bread-finance-admin-carts-helper.php
r3129146 r3284375 145 145 "itemUrl" => $detailUrl, 146 146 "imageUrl" => $imageUrl, 147 "description" => $product->get_description(),147 "description" => preg_replace('/[^a-zA-Z0-9_%\[().\]\\/- ]/s', '', $product->get_description()), 148 148 "shippingCost" => array( 149 149 -
bread-finance/trunk/classes/class-bread-finance-options-cart.php
r3065172 r3284375 259 259 } 260 260 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'); 262 262 263 263 $customer = WC()->customer;
Note: See TracChangeset
for help on using the changeset viewer.