Plugin Directory

Changeset 2719504


Ignore:
Timestamp:
05/06/2022 03:28:44 PM (4 years ago)
Author:
dillerapp
Message:

Bug fixing and small tweaks.
Adds: Mbstring polyfill extensions for PHP 8.

Location:
diller-loyalty/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • diller-loyalty/trunk/README.txt

    r2705571 r2719504  
    44Requires at least: 4.7
    55Tested up to: 5.9
    6 Version: 2.2.2
    7 Stable tag: 2.2.2
     6Version: 2.2.3
     7Stable tag: 2.2.3
    88Requires PHP: 7.3
    99WC requires at least: 3.8.0
     
    6565
    6666== Changelog ==
     67= 2.2.3 =
     68* Bug fixing and small tweaks.
     69* Adds mbstring polyfill extensions for PHP 8
     70
    6771= 2.2.2 =
    6872* Fixes PHP warning and notices being thrown in some actions.
  • diller-loyalty/trunk/diller-loyalty.php

    r2705571 r2719504  
    66 * Plugin URI:           https://diller.no/
    77 * 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.2
     8 * Version:              2.2.3
    99 * Author:               Diller AS
    1010 * Author URI:           https://diller.no/kontakt/
     
    1313 * Text Domain:          diller-loyalty
    1414 * Domain Path:          /languages
    15  * Stable tag:           2.2.2
     15 * Stable tag:           2.2.3
    1616 * Requires at least:    4.7
    1717 * Tested up to:         5.8.2
     
    3131// Start at version 2.0.0 and use SemVer - https://semver.org
    3232if ( ! defined( 'DILLER_LOYALTY_VERSION' ) ) {
    33     define('DILLER_LOYALTY_VERSION', '2.2.2');
     33    define('DILLER_LOYALTY_VERSION', '2.2.3');
    3434}
    3535
  • diller-loyalty/trunk/includes/class-diller-loyalty-api.php

    r2691550 r2719504  
    916916        $transaction_total_amount = $order->get_total();
    917917        $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');
    919919        $created_time_utc = get_gmt_from_date($order->get_date_created(), 'H:i:s');
    920920
  • diller-loyalty/trunk/includes/class-diller-loyalty-woocommerce.php

    r2705571 r2719504  
    10781078        if(empty($phone_number)){
    10791079            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",
    10811081                    $order->get_id(),
    10821082                    $order->get_status(),
Note: See TracChangeset for help on using the changeset viewer.