Changeset 8326
- Timestamp:
- 02/22/2019 08:29:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/sponsor-invoices-dashboard.php
r8194 r8326 483 483 484 484 $table_name = get_index_table_name(); 485 $sent_invoices = $wpdb->get_results( 486 $wpdb->prepare( 487 " 488 SELECT blog_id, invoice_id 489 FROM $table_name 490 WHERE status = 'wcbsi_approved' 491 LIMIT 1000 492 ", 493 array() 494 ) 485 $sent_invoices = $wpdb->get_results( " 486 SELECT blog_id, invoice_id 487 FROM $table_name 488 WHERE status = 'wcbsi_approved' 489 LIMIT 1000" 490 // Don't forget to add a prepare() call here if you ever add user input. 495 491 ); 496 492
Note: See TracChangeset
for help on using the changeset viewer.