Changeset 2859484
- Timestamp:
- 02/03/2023 09:06:57 AM (3 years ago)
- Location:
- app360/trunk
- Files:
-
- 3 edited
-
app360.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
voucher.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
app360/trunk/app360.php
r2859448 r2859484 11 11 * Plugin URI: https://www.app360.my/ 12 12 * Description: App360 CRM allows the integration between WooCommerce and App360 13 * Version: 1.3.1 313 * Version: 1.3.14 14 14 * Author: App360 15 15 * License: GPLv2 or later -
app360/trunk/readme.txt
r2859448 r2859484 4 4 Requires at least: 5.6 5 5 Tested up to: 5.8 6 Stable tag: 1.3.1 36 Stable tag: 1.3.14 7 7 License: GPLv2 or later 8 8 … … 39 39 == Changelog == 40 40 41 = 1.3.14 = 42 *Release Date - 03 February 2023* 43 44 * bugfix | Fix undefined variable 45 41 46 = 1.3.13 = 42 47 *Release Date - 18 January 2023* -
app360/trunk/voucher.php
r2859448 r2859484 77 77 $code = get_post($coupon->get_id())->post_title; 78 78 if(!in_array($code, $applied_coupons)){ 79 $ user_id = get_current_user_id();79 $wc_user_id = get_current_user_id(); 80 80 $user_id = get_user_meta($wc_user_id, 'app360_userid') ? get_user_meta($wc_user_id, 'app360_userid')[0] : 0; 81 81 $reward_id = get_post_meta($coupon->get_id(), 'voucher_id', true) ? get_post_meta($coupon->get_id(), 'voucher_id', true) : 0;
Note: See TracChangeset
for help on using the changeset viewer.