Changeset 3304
- Timestamp:
- 06/06/2016 08:47:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/reimbursement-request.php
r3303 r3304 727 727 $column_headings = array( 728 728 'WordCamp', 'ID', 'Title', 'Status', 'Paid', 'Requested', 'Amount', 729 ' Reason', 'Categories', 'Payment Method', 'Name',729 'Currency', 'Reason', 'Categories', 'Payment Method', 'Name', 730 730 'Check Payable To', 'URL', 731 731 ); … … 795 795 $amount, 796 796 $currency, 797 $reason, 797 798 implode( ',', $categories ), 798 799 get_post_meta( $post->ID, '_wcbrr_payment_method', true ), … … 833 834 * are sorted. 834 835 */ 835 $empty_fields = array( 0, 3, 4, 7, 9, 10, 11, 12);836 $empty_fields = array( 0, 3, 4, 7, 8, 10, 11, 12, 13 ); 836 837 foreach ( $empty_fields as $index ) { 837 838 $row[ $index ] = ''; … … 842 843 $row[5] = $expense['_wcbrr_date']; 843 844 $row[6] = $expense['_wcbrr_amount']; 844 $row[ 8] = $expense['_wcbrr_category'];845 $row[9] = $expense['_wcbrr_category']; 845 846 846 847 return $row;
Note: See TracChangeset
for help on using the changeset viewer.