Changeset 6537 for trunk/src/includes/admin/tools/repair.php
- Timestamp:
- 06/13/2017 05:30:47 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/tools/repair.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/tools/repair.php
r6523 r6537 89 89 </th> 90 90 <td class="bbp-tool-title column-primary column-description" data-colname="<?php esc_html_e( 'Description', 'bbpress' ); ?>"> 91 <strong><?php echo esc_html( $item['description'] ); ?></strong> 92 <div class="row-actions hide-if-no-js"> 91 <strong><?php echo esc_html( $item['title'] ); ?></strong><?php 92 93 // Optional description 94 if ( ! empty( $item['description'] ) ) : 95 echo esc_html( $item['description'] ); 96 endif; 97 98 ?><div class="row-actions hide-if-no-js"> 93 99 <span class="run"> 94 <a href="<?php bbp_admin_repair_tool_run_url( $item ); ?>" aria-label="<?php printf( esc_html__( 'Run %s', 'bbpress' ), $item[' description'] ); ?>" id="<?php echo esc_attr( $item['id'] ); ?>" ><?php esc_html_e( 'Run', 'bbpress' ); ?></a>100 <a href="<?php bbp_admin_repair_tool_run_url( $item ); ?>" aria-label="<?php printf( esc_html__( 'Run %s', 'bbpress' ), $item['title'] ); ?>" id="<?php echo esc_attr( $item['id'] ); ?>" ><?php esc_html_e( 'Run', 'bbpress' ); ?></a> 95 101 </span> 96 102 </div>
Note: See TracChangeset
for help on using the changeset viewer.