Changeset 11618
- Timestamp:
- 06/23/2017 09:31:25 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/register.php
r11617 r11618 170 170 171 171 <div<?php bp_field_css_class( 'editfield' ); ?>> 172 <fieldset> 172 173 173 174 <?php … … 223 224 do_action( 'bp_custom_profile_edit_fields' ); ?> 224 225 226 </fieldset> 225 227 </div> 226 228 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
r11617 r11618 39 39 40 40 <div<?php bp_field_css_class( 'editfield' ); ?>> 41 <fieldset> 41 42 42 43 <?php … … 92 93 do_action( 'bp_custom_profile_edit_fields' ); ?> 93 94 95 </fieldset> 94 96 </div> 95 97 -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php
r11617 r11618 68 68 } ?> 69 69 70 <fieldset class="checkbox">71 70 <legend> 72 71 <?php bp_the_profile_field_name(); ?> … … 86 85 'user_id' => $user_id 87 86 ) ); ?> 88 89 </fieldset>90 87 91 88 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
r11617 r11618 80 80 'name' => bp_get_the_profile_field_input_name() . '_year' 81 81 ) ); ?> 82 83 <fieldset class="datebox">84 82 85 83 <legend> … … 143 141 </div> 144 142 145 </fieldset>146 143 <?php 147 144 } -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php
r11617 r11618 74 74 ) ); ?> 75 75 76 <l abel for="<?php bp_the_profile_field_input_name(); ?>[]">76 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> 77 77 <?php bp_the_profile_field_name(); ?> 78 78 <?php bp_the_profile_field_required_label(); ?> 79 </l abel>79 </legend> 80 80 81 81 <?php … … 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- describedby="<?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(); ?>-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
r11617 r11618 66 66 ) ); ?> 67 67 68 <l abel for="<?php bp_the_profile_field_input_name(); ?>">68 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> 69 69 <?php bp_the_profile_field_name(); ?> 70 70 <?php bp_the_profile_field_required_label(); ?> 71 </l abel>71 </legend> 72 72 73 73 <?php … … 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- describedby="<?php bp_the_profile_field_input_name(); ?>-3">78 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1"> 79 79 80 80 <?php if ( bp_get_the_profile_field_description() ) : ?> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php
r11617 r11618 66 66 } ?> 67 67 68 <fieldset class="radio">69 70 68 <legend> 71 69 <?php bp_the_profile_field_name(); ?> … … 91 89 92 90 <?php endif; ?> 93 94 </fieldset>95 91 96 92 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php
r11617 r11618 66 66 } ?> 67 67 68 <l abel for="<?php bp_the_profile_field_input_name(); ?>">68 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> 69 69 <?php bp_the_profile_field_name(); ?> 70 70 <?php bp_the_profile_field_required_label(); ?> 71 </l abel>71 </legend> 72 72 73 73 <?php … … 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- describedby="<?php bp_the_profile_field_input_name(); ?>-3">78 <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1"> 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
r11617 r11618 64 64 $richtext_enabled = bp_xprofile_is_richtext_enabled_for_field(); ?> 65 65 66 <l abel for="<?php bp_the_profile_field_input_name(); ?>">66 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> 67 67 <?php bp_the_profile_field_name(); ?> 68 68 <?php bp_the_profile_field_required_label(); ?> 69 </l abel>69 </legend> 70 70 71 71 <?php … … 82 82 ?> 83 83 84 <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?> aria- describedby="<?php bp_the_profile_field_input_name(); ?>-3"><?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"><?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
r11617 r11618 65 65 ) ); ?> 66 66 67 <l abel for="<?php bp_the_profile_field_input_name(); ?>">67 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> 68 68 <?php bp_the_profile_field_name(); ?> 69 69 <?php bp_the_profile_field_required_label(); ?> 70 </l abel>70 </legend> 71 71 72 72 <?php … … 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- describedby="<?php bp_the_profile_field_input_name(); ?>-3">77 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1"> 78 78 79 79 <?php if ( bp_get_the_profile_field_description() ) : ?> -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-url.php
r11617 r11618 67 67 ) ); ?> 68 68 69 <l abel for="<?php bp_the_profile_field_input_name(); ?>">69 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> 70 70 <?php bp_the_profile_field_name(); ?> 71 71 <?php bp_the_profile_field_required_label(); ?> 72 </l abel>72 </legend> 73 73 74 74 <?php … … 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- describedby="<?php bp_the_profile_field_input_name(); ?>-3">79 <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1"> 80 80 81 81 <?php if ( bp_get_the_profile_field_description() ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.