Ticket #6887: 6887.patch
File 6887.patch, 1.4 KB (added by , 9 years ago) |
---|
-
src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
99 99 */ 100 100 do_action( bp_get_the_profile_field_errors_action() ); ?> 101 101 102 <label for="<?php bp_the_profile_field_input_name(); ?>_day" class="bp-screen-reader-text"><?php esc_html_e( 'Select day', 'buddypress' ); ?></label> 102 103 <select <?php echo $this->get_edit_field_html_elements( $day_r ); ?>> 103 104 <?php bp_the_profile_field_options( array( 104 105 'type' => 'day', … … 106 107 ) ); ?> 107 108 </select> 108 109 110 <label for="<?php bp_the_profile_field_input_name(); ?>_month" class="bp-screen-reader-text"><?php esc_html_e( 'Select month', 'buddypress' ); ?></label> 109 111 <select <?php echo $this->get_edit_field_html_elements( $month_r ); ?>> 110 112 <?php bp_the_profile_field_options( array( 111 113 'type' => 'month', … … 113 115 ) ); ?> 114 116 </select> 115 117 118 <label for="<?php bp_the_profile_field_input_name(); ?>_year" class="bp-screen-reader-text"><?php esc_html_e( 'Select year', 'buddypress' ); ?></label> 116 119 <select <?php echo $this->get_edit_field_html_elements( $year_r ); ?>> 117 120 <?php bp_the_profile_field_options( array( 118 121 'type' => 'year',