Changeset 2719504
- Timestamp:
- 05/06/2022 03:28:44 PM (4 years ago)
- Location:
- diller-loyalty/trunk
- Files:
-
- 1 added
- 4 edited
-
README.txt (modified) (2 diffs)
-
diller-loyalty.php (modified) (3 diffs)
-
includes/class-diller-loyalty-api.php (modified) (1 diff)
-
includes/class-diller-loyalty-woocommerce.php (modified) (1 diff)
-
vendor/symfony/polyfill-mbstring/bootstrap80.php (added)
Legend:
- Unmodified
- Added
- Removed
-
diller-loyalty/trunk/README.txt
r2705571 r2719504 4 4 Requires at least: 4.7 5 5 Tested up to: 5.9 6 Version: 2.2. 27 Stable tag: 2.2. 26 Version: 2.2.3 7 Stable tag: 2.2.3 8 8 Requires PHP: 7.3 9 9 WC requires at least: 3.8.0 … … 65 65 66 66 == Changelog == 67 = 2.2.3 = 68 * Bug fixing and small tweaks. 69 * Adds mbstring polyfill extensions for PHP 8 70 67 71 = 2.2.2 = 68 72 * Fixes PHP warning and notices being thrown in some actions. -
diller-loyalty/trunk/diller-loyalty.php
r2705571 r2719504 6 6 * Plugin URI: https://diller.no/ 7 7 * Description: Diller is a loyalty platform for businesses that is easy, affordable and profitable and integrates seamlessly with your WooCommerce shop. 8 * Version: 2.2. 28 * Version: 2.2.3 9 9 * Author: Diller AS 10 10 * Author URI: https://diller.no/kontakt/ … … 13 13 * Text Domain: diller-loyalty 14 14 * Domain Path: /languages 15 * Stable tag: 2.2. 215 * Stable tag: 2.2.3 16 16 * Requires at least: 4.7 17 17 * Tested up to: 5.8.2 … … 31 31 // Start at version 2.0.0 and use SemVer - https://semver.org 32 32 if ( ! defined( 'DILLER_LOYALTY_VERSION' ) ) { 33 define('DILLER_LOYALTY_VERSION', '2.2. 2');33 define('DILLER_LOYALTY_VERSION', '2.2.3'); 34 34 } 35 35 -
diller-loyalty/trunk/includes/class-diller-loyalty-api.php
r2691550 r2719504 916 916 $transaction_total_amount = $order->get_total(); 917 917 $order_items = $order->get_items(); 918 $created_date = $order->get_date_created()->date('Y-m-d');918 $created_date = get_gmt_from_date($order->get_date_created(),'Y-m-d'); 919 919 $created_time_utc = get_gmt_from_date($order->get_date_created(), 'H:i:s'); 920 920 -
diller-loyalty/trunk/includes/class-diller-loyalty-woocommerce.php
r2705571 r2719504 1078 1078 if(empty($phone_number)){ 1079 1079 DillerLoyalty()->get_logger()->info(sprintf( 1080 "Exited. Empty phone number. Order# %s with status %s payment via %4",1080 "Exited. Empty phone number. Order# %s with status %s payment via %s", 1081 1081 $order->get_id(), 1082 1082 $order->get_status(),
Note: See TracChangeset
for help on using the changeset viewer.