Plugin Directory

Changeset 2984564


Ignore:
Timestamp:
10/26/2023 06:05:23 PM (2 years ago)
Author:
adrianpo
Message:

tagging version 2.1.2

Location:
postapanduri
Files:
3 edited
21 copied

Legend:

Unmodified
Added
Removed
  • postapanduri/tags/2.1.2/README.txt

    r2983666 r2984564  
    55Requires at least: 5.0
    66Tested up to: 6.3
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.2
    88Requires PHP: 5.5.0
    99License: GPLv3
     
    7777== Changelog ==
    7878
     79= 2.1.2 =
     80* Woocommerce HPOS support fix
     81
    7982= 2.1.1 =
    8083* Woocommerce HPOS support fix
  • postapanduri/tags/2.1.2/inc/admin/class-admin.php

    r2983666 r2984564  
    77use PostaPanduri\Inc\Core\WC_PostaPanduri as WC_PostaPanduri;
    88use PostaPanduri\Inc\Libraries\LO as LO;
     9use WC_Order;
    910use WP_Post;
    1011
     
    8384        $order = $theorder;
    8485
    85         if (OrderUtil::is_order($order->get_id(), wc_get_order_types())) {
     86        if ($order instanceof WC_Order && OrderUtil::is_order($order->get_id(), wc_get_order_types())) {
    8687            $screen = wc_get_container()->get(CustomOrdersTableController::class)->custom_orders_table_usage_is_enabled()
    8788                ? wc_get_page_screen_id('shop-order')
  • postapanduri/tags/2.1.2/postapanduri.php

    r2983666 r2984564  
    1717 * Plugin URI:        https://postapanduri.ro/
    1818 * Description:       Courier Services and Smartlocker pickpup. Clients who buy online and can opt to pick up the ordered packages from the nearest preset pickup point or to have the parcel delivered to their door.
    19  * Version:           2.1.1
     19 * Version:           2.1.2
    2020 * Author:            C Solution SRL
    2121 * Author URI:        https://www.c-solution.biz/
     
    4343define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
    4444define(NS . 'PLUGIN_NAME', 'postapanduri');
    45 define(NS . 'PLUGIN_VERSION', '2.1.1');
     45define(NS . 'PLUGIN_VERSION', '2.1.2');
    4646define(NS . 'PLUGIN_NAME_DIR', plugin_dir_path(__FILE__));
    4747define(NS . 'PLUGIN_NAME_URL', plugin_dir_url(__FILE__));
  • postapanduri/trunk/README.txt

    r2983666 r2984564  
    55Requires at least: 5.0
    66Tested up to: 6.3
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.2
    88Requires PHP: 5.5.0
    99License: GPLv3
     
    7777== Changelog ==
    7878
     79= 2.1.2 =
     80* Woocommerce HPOS support fix
     81
    7982= 2.1.1 =
    8083* Woocommerce HPOS support fix
  • postapanduri/trunk/inc/admin/class-admin.php

    r2983666 r2984564  
    77use PostaPanduri\Inc\Core\WC_PostaPanduri as WC_PostaPanduri;
    88use PostaPanduri\Inc\Libraries\LO as LO;
     9use WC_Order;
    910use WP_Post;
    1011
     
    8384        $order = $theorder;
    8485
    85         if (OrderUtil::is_order($order->get_id(), wc_get_order_types())) {
     86        if ($order instanceof WC_Order && OrderUtil::is_order($order->get_id(), wc_get_order_types())) {
    8687            $screen = wc_get_container()->get(CustomOrdersTableController::class)->custom_orders_table_usage_is_enabled()
    8788                ? wc_get_page_screen_id('shop-order')
  • postapanduri/trunk/postapanduri.php

    r2983666 r2984564  
    1717 * Plugin URI:        https://postapanduri.ro/
    1818 * Description:       Courier Services and Smartlocker pickpup. Clients who buy online and can opt to pick up the ordered packages from the nearest preset pickup point or to have the parcel delivered to their door.
    19  * Version:           2.1.1
     19 * Version:           2.1.2
    2020 * Author:            C Solution SRL
    2121 * Author URI:        https://www.c-solution.biz/
     
    4343define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
    4444define(NS . 'PLUGIN_NAME', 'postapanduri');
    45 define(NS . 'PLUGIN_VERSION', '2.1.1');
     45define(NS . 'PLUGIN_VERSION', '2.1.2');
    4646define(NS . 'PLUGIN_NAME_DIR', plugin_dir_path(__FILE__));
    4747define(NS . 'PLUGIN_NAME_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.