Changeset 2682 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/views/payment-request/input-country.php
- Timestamp:
- 03/03/2016 07:33:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/views/payment-request/input-country.php
r2494 r2682 5 5 </label> 6 6 </th> 7 7 8 <td> 8 <select id="<?php echo esc_attr( $name ); ?>" name="<?php echo esc_attr( $name ); ?>"> 9 <select 10 id="<?php echo esc_attr( $name ); ?>" 11 name="<?php echo esc_attr( $name ); ?>" 12 <?php __checked_selected_helper( $required, true, true, 'required' ); ?> 13 > 9 14 <option value="">(None)</option> 10 15 <?php foreach ( $options as $value => $option_label ) : ?> … … 14 19 <?php endforeach; ?> 15 20 </select> 21 22 <?php 23 if ( $required ) { 24 WordCamp_Budgets::render_form_field_required_indicator(); 25 } 26 ?> 16 27 </td> 17 28 </tr>
Note: See TracChangeset
for help on using the changeset viewer.