Changeset 2157807
- Timestamp:
- 09/17/2019 11:41:01 AM (7 years ago)
- Location:
- raffle-ticket-generator/trunk
- Files:
-
- 1 added
- 2 edited
-
includes/js/script.js (added)
-
raffle-ticket-generator.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
raffle-ticket-generator/trunk/raffle-ticket-generator.php
r2146994 r2157807 4 4 Plugin URI: http://wpraffle.com 5 5 Description: Raffle Ticket Generator. Generate numbered raffle tickets and email virtual tickets via WooCommerce order system 6 Version: 3.5.3 6 Version: 3.5.3.1 7 7 Author: The Web Design Ninja 8 8 Author URI: http://TheWebDesignNinja.com … … 55 55 $wpdb->query($sql); 56 56 } 57 register_deactivation_hook( __FILE__, 'wooraffle_uninstall' );57 //register_deactivation_hook( __FILE__, 'wooraffle_uninstall' ); 58 58 59 59 … … 244 244 245 245 while ( $loop->have_posts() ) : $loop->the_post(); 246 247 246 $number_of_tickets = get_post_meta( get_the_ID(), '_number_field', true ); 247 if ($number_of_tickets > 0) { 248 248 echo '<form method="post"> 249 249 … … 425 425 426 426 427 427 } 428 428 429 429 -
raffle-ticket-generator/trunk/readme.txt
r2146994 r2157807 105 105 106 106 Changed SQL methods to better secure plugin 107 108 =3.5.3.1= 109 Bug fixes of displaying non raffle products and js confliction in bronze version
Note: See TracChangeset
for help on using the changeset viewer.