diff --git src/bp-xprofile/bp-xprofile-classes.php src/bp-xprofile/bp-xprofile-classes.php
index 03b29ed..23a6a9f 100644
|
|
abstract class BP_XProfile_Field_Type { |
2831 | 2831 | |
2832 | 2832 | <p class="sortable"> |
2833 | 2833 | <span> Ξ </span> |
2834 | | <input type="text" name="<?php echo esc_attr( "{$type}_option[{$j}]" ); ?>" id="<?php echo esc_attr( "{$type}_option{$j}" ); ?>" value="<?php echo esc_attr( $options[$i]->name ); ?>" /> |
| 2834 | <input type="text" name="<?php echo esc_attr( "{$type}_option[{$j}]" ); ?>" id="<?php echo esc_attr( "{$type}_option{$j}" ); ?>" value="<?php echo esc_attr( stripslashes( $options[$i]->name ) ); ?>" /> |
2835 | 2835 | <input type="<?php echo esc_attr( $control_type ); ?>" name="<?php echo esc_attr( "isDefault_{$type}_option{$default_name}" ); ?>" <?php checked( $options[$i]->is_default_option, true ); ?> value="<?php echo esc_attr( $j ); ?>" /> |
2836 | 2836 | <span><?php _e( 'Default Value', 'buddypress' ); ?></span> |
2837 | 2837 | </p> |