Changeset 494797
- Timestamp:
- 01/24/2012 10:12:57 PM (14 years ago)
- File:
-
- 1 edited
-
wpeventticketing/trunk/ticketing.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpeventticketing/trunk/ticketing.php
r414980 r494797 771 771 global $wpdb; 772 772 $packages = $wpdb->get_results("select option_value from {$wpdb->options} where option_name like 'package_%'"); 773 //echo '<pre>'.print_r($packages,true).'</pre>';exit; 773 774 $bccList = array(); 774 775 if (is_array($packages)) … … 1010 1011 foreach ($tr[$k] as $data) 1011 1012 { 1012 if($data["final"] && !in_array($k,$exclude) )1013 if($data["final"] && !in_array($k,$exclude) && !in_array($data['Package Type'],$exclude)) 1013 1014 { 1014 1015 $c++; … … 1348 1349 foreach($tr as $to) 1349 1350 { 1350 $summary[$to[$s]]++; 1351 if(is_array($to[$s])) 1352 { 1353 foreach($to[$s] as $index) 1354 $summary[$index]++; 1355 } 1356 else 1357 { 1358 $summary[$to[$s]]++; 1359 } 1351 1360 } 1352 1361 ksort($summary);
Note: See TracChangeset
for help on using the changeset viewer.