Changeset 2706
- Timestamp:
- 03/08/2016 01:48:04 PM (10 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes
- Files:
-
- 2 edited
-
reimbursement-requests-dashboard.php (modified) (4 diffs)
-
wordcamp-budgets-dashboard.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/reimbursement-requests-dashboard.php
r2699 r2706 5 5 defined( 'WPINC' ) or die(); 6 6 7 const LATEST_DATABASE_VERSION = 1;7 const LATEST_DATABASE_VERSION = 2; 8 8 9 9 if ( is_network_admin() ) { … … 154 154 request_id int( 11 ) unsigned NOT NULL default '0', 155 155 date_requested int( 11 ) unsigned NOT NULL default '0', 156 date_paid int( 11 ) unsigned NOT NULL default '0', 156 157 request_title varchar( 75 ) NOT NULL default '', 157 158 status varchar( 30 ) NOT NULL default '', … … 160 161 amount numeric( 10, 2 ) unsigned NOT NULL default '0', 161 162 162 PRIMARY KEY (blog_id, request_id),163 PRIMARY KEY (blog_id, request_id), 163 164 KEY status (status) 164 165 ) … … 223 224 'request_id' => $request_id, 224 225 'date_requested' => strtotime( $request->post_date_gmt ), 226 'date_paid' => get_post_meta( $request_id, '_wcbrr_date_paid', true ), 225 227 'request_title' => $request->post_title, 226 228 'status' => $request->post_status, -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/wordcamp-budgets-dashboard.php
r2701 r2706 61 61 <h1>Import/Export</h1> 62 62 63 <?php do_action( 'admin_notices' ); ?>64 63 <?php settings_errors(); ?> 65 64
Note: See TracChangeset
for help on using the changeset viewer.