Changeset 12739 for trunk/src/bp-core/admin/bp-core-admin-tools.php
- Timestamp:
- 10/03/2020 05:19:21 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-core/admin/bp-core-admin-tools.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-tools.php
r12732 r12739 23 23 <hr class="wp-header-end"> 24 24 25 <p><?php esc_html_e( 'BuddyPress keeps track of various relationships between members, groups, and activity items. Occasionally these relationships become out of sync, most often after an import, update, or migration.', 'buddypress' ); ?></p> 25 <p><?php esc_html_e( 'BuddyPress keeps track of various relationships between members, groups, and activity items.', 'buddypress' ); ?></p> 26 <p><?php esc_html_e( 'Occasionally these relationships become out of sync, most often after an import, update, or migration.', 'buddypress' ); ?></p> 26 27 <p><?php esc_html_e( 'Use the tools below to manually recalculate these relationships.', 'buddypress' ); ?> 27 28 </p> 28 <p class="description"><?php esc_html_e( 'Some of these tools create substantial database overhead. Avoid running more than one repair job at a time.', 'buddypress' ); ?></p> 29 <p class="attention"><?php esc_html_e( 'Some of these tools create substantial database overhead. Avoid running more than one repair job at a time.', 'buddypress' ); ?></p> 30 31 <h2><?php esc_html_e( 'Activate checkboxe(s) to select the operation(s) to perform', 'buddypress' ); ?></h2> 29 32 30 33 <form class="settings" method="post" action=""> 31 34 32 35 <fieldset> 33 <legend><?php esc_html_e( 'Repair tools', 'buddypress' ) ?></legend> 34 35 <div class="checkbox"> 36 <legend class="screen-reader-text"><?php esc_html_e( 'Repair tools', 'buddypress' ); ?></legend> 37 36 38 <?php foreach ( bp_admin_repair_list() as $item ) : ?> 37 <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> 39 <p> 40 <label for="<?php echo esc_attr( str_replace( '_', '-', $item[0] ) ); ?>"> 41 <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] ); ?> 42 </label> 43 </p> 38 44 <?php endforeach; ?> 39 </div>40 45 41 46 <p class="submit">
Note: See TracChangeset
for help on using the changeset viewer.