Changeset 11645
- Timestamp:
- 07/13/2017 09:06:34 PM (8 years ago)
- Location:
- trunk/src/bp-xprofile/classes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php
r11618 r11645 84 84 do_action( bp_get_the_profile_field_errors_action() ); ?> 85 85 86 <select <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>- 3">86 <select <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 87 87 <?php bp_the_profile_field_options( array( 88 88 'user_id' => $user_id -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-number.php
r11618 r11645 76 76 do_action( bp_get_the_profile_field_errors_action() ); ?> 77 77 78 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" >78 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 79 79 80 80 <?php if ( bp_get_the_profile_field_description() ) : ?> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php
r11618 r11645 76 76 do_action( bp_get_the_profile_field_errors_action() ); ?> 77 77 78 <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" >78 <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 79 79 <?php bp_the_profile_field_options( array( 'user_id' => $user_id ) ); ?> 80 80 </select> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php
r11618 r11645 82 82 ?> 83 83 84 <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" ><?php bp_the_profile_field_edit_value(); ?></textarea>84 <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_edit_value(); ?></textarea> 85 85 86 86 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php
r11618 r11645 75 75 do_action( bp_get_the_profile_field_errors_action() ); ?> 76 76 77 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" >77 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 78 78 79 79 <?php if ( bp_get_the_profile_field_description() ) : ?> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-url.php
r11618 r11645 77 77 do_action( bp_get_the_profile_field_errors_action() ); ?> 78 78 79 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" >79 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"> 80 80 81 81 <?php if ( bp_get_the_profile_field_description() ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.