Plugin Directory

Changeset 3191936


Ignore:
Timestamp:
11/19/2024 08:30:26 AM (16 months ago)
Author:
inspireui
Message:

version 4.15.9

Location:
mstore-api
Files:
488 added
3 edited

Legend:

Unmodified
Added
Removed
  • mstore-api/trunk/controllers/flutter-order.php

    r3189145 r3191936  
    123123        if (isset($cookie) && $cookie != null) {
    124124            $user_id = validateCookieLogin($cookie);
    125             if (is_wp_error($user_id)) {
    126                 return false;
    127             }
     125            return !is_wp_error($user_id);
     126        } else if(count(array_keys($params)) == 1 && array_key_exists('status', $params)){ // allow Guest to change order status when enable UpdateOrderStatus in the app
    128127            return true;
    129         } else {
     128        }else {
    130129            return false;
    131130        }
  • mstore-api/trunk/mstore-api.php

    r3190678 r3191936  
    44 * Plugin URI: https://github.com/inspireui/mstore-api
    55 * Description: The MStore API Plugin which is used for the FluxBuilder and FluxStore Mobile App
    6  * Version: 4.15.8
     6 * Version: 4.15.9
    77 * Author: FluxBuilder
    88 * Author URI: https://fluxbuilder.com
     
    5858class MstoreCheckOut
    5959{
    60     public $version = '4.15.8';
     60    public $version = '4.15.9';
    6161
    6262    public function __construct()
  • mstore-api/trunk/readme.txt

    r3190678 r3191936  
    4949
    5050== Changelog ==
     51= 4.15.9 =
     52  * Fix edit order status for guest checkout
     53
    5154= 4.15.8 =
    5255  * Validate order and status_type params for reviews api
Note: See TracChangeset for help on using the changeset viewer.