Ticket #33313: 33313.patch
File 33313.patch, 619 bytes (added by , 10 years ago) |
---|
-
wp-admin/includes/class-wp-list-table.php
1258 1258 * @return string The row actions output. In this case, an empty string. 1259 1259 */ 1260 1260 protected function handle_row_actions( $item, $column_name, $primary ) { 1261 return '';1261 return $column_name == $primary ? '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>' : ''; 1262 1262 } 1263 1263 1264 1264 /**