Ticket #6623: bp-groups-widgets-select-id-for.patch
File bp-groups-widgets-select-id-for.patch, 1.5 KB (added by , 10 years ago) |
---|
-
src/bp-groups/bp-groups-widgets.php
179 179 <p><label for="bp-groups-widget-groups-max"><?php _e('Max groups to show:', 'buddypress'); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'max_groups' ); ?>" name="<?php echo $this->get_field_name( 'max_groups' ); ?>" type="text" value="<?php echo esc_attr( $max_groups ); ?>" style="width: 30%" /></label></p> 180 180 181 181 <p> 182 <label for=" bp-groups-widget-groups-default"><?php _e('Default groups to show:', 'buddypress'); ?>183 <select name="<?php echo $this->get_field_name( 'group_default' ); ?>" >182 <label for="<?php echo $this->get_field_id( 'group_default' ); ?>"><?php _e('Default groups to show:', 'buddypress'); ?></label> 183 <select name="<?php echo $this->get_field_name( 'group_default' ); ?>" id="<?php echo $this->get_field_id( 'group_default' ); ?>"> 184 184 <option value="newest" <?php if ( $group_default == 'newest' ) : ?>selected="selected"<?php endif; ?>><?php _e( 'Newest', 'buddypress' ) ?></option> 185 185 <option value="active" <?php if ( $group_default == 'active' ) : ?>selected="selected"<?php endif; ?>><?php _e( 'Active', 'buddypress' ) ?></option> 186 186 <option value="popular" <?php if ( $group_default == 'popular' ) : ?>selected="selected"<?php endif; ?>><?php _e( 'Popular', 'buddypress' ) ?></option> 187 187 </select> 188 </label>189 188 </p> 190 189 <?php 191 190 }