- Timestamp:
- 09/12/2021 08:43:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php
r11645 r13108 60 60 } 61 61 62 $r = bp_parse_args( $raw_properties, array( 63 'type' => 'text', 64 'value' => bp_get_the_profile_field_edit_value(), 65 ) ); ?> 62 $r = bp_parse_args( 63 $raw_properties, 64 array( 65 'type' => 'text', 66 'value' => bp_get_the_profile_field_edit_value(), 67 ) 68 ); 69 ?> 66 70 67 71 <legend id="<?php bp_the_profile_field_input_name(); ?>-1"> … … 95 99 public function admin_field_html( array $raw_properties = array() ) { 96 100 97 $r = bp_parse_args( $raw_properties, array( 98 'type' => 'text' 99 ) ); ?> 101 $r = bp_parse_args( 102 $raw_properties, 103 array( 104 'type' => 'text', 105 ) 106 ); 107 ?> 100 108 101 109 <label for="<?php bp_the_profile_field_input_name(); ?>" class="screen-reader-text"><?php
Note: See TracChangeset
for help on using the changeset viewer.