Changeset 3246833
- Timestamp:
- 02/26/2025 05:40:50 AM (13 months ago)
- Location:
- wp-event-solution
- Files:
-
- 2 edited
-
tags/4.0.24/core/woocommerce/hooks.php (modified) (1 diff)
-
trunk/core/woocommerce/hooks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-event-solution/tags/4.0.24/core/woocommerce/hooks.php
r3246820 r3246833 169 169 170 170 switch ($order->get_status()) { 171 case "completed":171 case in_array( $order->get_status(), etn_get_option('wc_order_statuses') ): 172 172 if ( 'completed' === $event_order->status ) { 173 173 return; -
wp-event-solution/trunk/core/woocommerce/hooks.php
r3246820 r3246833 169 169 170 170 switch ($order->get_status()) { 171 case "completed":171 case in_array( $order->get_status(), etn_get_option('wc_order_statuses') ): 172 172 if ( 'completed' === $event_order->status ) { 173 173 return;
Note: See TracChangeset
for help on using the changeset viewer.