Changeset 2885 for sites/branches/application-tracking/wordcamp.org
- Timestamp:
- 04/04/2016 11:03:55 AM (9 years ago)
- Location:
- sites/branches/application-tracking/wordcamp.org
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org
- Property svn:mergeinfo changed
/sites/trunk/wordcamp.org merged: 2859,2862,2878
- Property svn:mergeinfo changed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-new-site.php
r2877 r2885 47 47 </label> 48 48 49 <span class="description">(e.g., https:// city.wordcamp.org/<?php echo esc_html( date( 'Y' ) ); ?>)</span>49 <span class="description">(e.g., https://<?php echo date('Y'); ?>.city.wordcamp.org)</span> 50 50 <?php endif; // domain_exists ?> 51 51 <?php endif; // current_user_can ?> -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments
- Property svn:mergeinfo changed
/sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments merged: 2878
- Property svn:mergeinfo changed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network
- Property svn:mergeinfo changed
/sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network (added) merged: 2862
- Property svn:mergeinfo changed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/wordcamp-budgets-dashboard.php
r2774 r2885 692 692 693 693 $file = $_FILES['wcpn-import-file']; 694 if ( $file['type'] != 'text/csv' ) { 695 wp_die( 'Please upload a text/csv file.' ); 694 $ext = strtolower( pathinfo( $file['name'], PATHINFO_EXTENSION ) ); 695 696 if ( $ext != 'csv' ) { 697 wp_die( 'Please upload a .csv file.' ); 696 698 } 697 699 -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/css/wordcamp-budgets.css
r2692 r2885 18 18 } 19 19 20 #save-action {20 body.post-type-wcb_sponsor_invoice #save-action { 21 21 overflow: auto; /* Without this the element collapses on Invoices because all of it's children are floated */ 22 22 } -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/wordcamp-budgets.php
r2825 r2885 161 161 plugins_url( 'css/wordcamp-budgets.css', __DIR__ ), 162 162 $soft_deps, 163 3163 4 164 164 ); 165 165 } -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/javascript/attached-files.js
r2346 r2885 84 84 * 85 85 * Files that are already attached to other posts are ignored. 86 * @todo add an error message if the file is already attached to other posts, see https://wordpress.slack.com/archives/meta-wordcamp/p1459185670000179 86 87 * 87 88 * @param {app.AttachedFile} file
Note: See TracChangeset
for help on using the changeset viewer.