Skip to:
Content

BuddyPress.org

Ticket #5704: 5704.patch

File 5704.patch, 1.0 KB (added by imath, 10 years ago)
  • src/bp-xprofile/bp-xprofile-classes.php

    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 { 
    28312831
    28322832                                                <p class="sortable">
    28332833                                                        <span>&nbsp;&Xi;&nbsp;</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 ) ); ?>" />
    28352835                                                        <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 ); ?>" />
    28362836                                                        <span><?php _e( 'Default Value', 'buddypress' ); ?></span>
    28372837                                                </p>