Ticket #6617: 6617-bp-core-admin-tools.patch
| File 6617-bp-core-admin-tools.patch, 877 bytes (added by , 10 years ago) |
|---|
-
src/bp-core/admin/bp-core-admin-tools.php
40 40 41 41 <?php foreach ( bp_admin_repair_list() as $item ) : ?> 42 42 43 <label ><input type="checkbox" class="checkbox" name="<?php echo esc_attr( $item[0] ) . '" id="' . esc_attr( str_replace( '_', '-', $item[0] ) ); ?>" value="1" /> <?php echo esc_html( $item[1] ); ?></label><br />43 <label for="<?php echo esc_attr( str_replace( '_', '-', $item[0] ) ); ?>"><input type="checkbox" class="checkbox" name="<?php echo esc_attr( $item[0] ) . '" id="' . esc_attr( str_replace( '_', '-', $item[0] ) ); ?>" value="1" /> <?php echo esc_html( $item[1] ); ?></label><br /> 44 44 45 45 <?php endforeach; ?> 46 46