Changeset 1644954
- Timestamp:
- 04/25/2017 01:33:52 PM (9 years ago)
- Location:
- opentickets-community-edition/trunk
- Files:
-
- 5 edited
-
inc/sys/core-hacks.class.php (modified) (1 diff)
-
inc/sys/wc3.php (modified) (1 diff)
-
inc/ticket/product.class.php (modified) (1 diff)
-
launcher.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
opentickets-community-edition/trunk/inc/sys/core-hacks.class.php
r1614433 r1644954 115 115 116 116 public static function do_not_process_product($is, $product, $order_id) { 117 if (get_post_meta( $product->id, '_no_processing', true) == 'yes') $is = false;117 if (get_post_meta( QSOT_WC3()->product_data( $product, 'id' ), '_no_processing', true) == 'yes') $is = false; 118 118 return $is; 119 119 } -
opentickets-community-edition/trunk/inc/sys/wc3.php
r1634310 r1644954 210 210 // if is wc3, use the function 211 211 if ( $this->is_wc3() ) { 212 return call_user_func( array( &$ this, 'get_' . $key ) );212 return call_user_func( array( &$product, 'get_' . $key ) ); 213 213 } 214 214 -
opentickets-community-edition/trunk/inc/ticket/product.class.php
r1634310 r1644954 201 201 // when tickets are purchased, they do not need to be 'processing'. thus, if the order is for only tickets, the order should go straight to completed after payment is received 202 202 public static function tickets_dont_need_processing( $needs, $product, $order_id ) { 203 if ( get_post_meta( $product->id, '_ticket', true ) == 'yes' )203 if ( get_post_meta( QSOT_WC3()->product_data( $product, 'id' ), '_ticket', true ) == 'yes' ) 204 204 $needs = false; 205 205 return $needs; -
opentickets-community-edition/trunk/launcher.php
r1634310 r1644954 4 4 * Plugin URI: http://opentickets.com/ 5 5 * Description: Event Management and Online Ticket Sales Platform 6 * Version: 2.8. 06 * Version: 2.8.1 7 7 * Author: Quadshot Software LLC 8 8 * Author URI: http://quadshot.com/ … … 55 55 'fctm' => 'fc', 56 56 'always_reserve' => 0, 57 'version' => '2.8. 0',57 'version' => '2.8.1', 58 58 'min_wc_version' => '2.6.14', 59 59 'core_post_type' => 'qsot-event', -
opentickets-community-edition/trunk/readme.txt
r1634310 r1644954 171 171 172 172 == Changelog == 173 174 = 2.8.1 - Apr/10/2017 = 175 * [tweak] more changes to resolve WC3 compatibility issues, when OTCE is used with extensions 173 176 174 177 = 2.8.0 - Apr/10/2017 =
Note: See TracChangeset
for help on using the changeset viewer.