Ticket #26743: 26743.2.patch
File 26743.2.patch, 1.7 KB (added by , 11 years ago) |
---|
-
src/wp-admin/includes/class-wp-comments-list-table.php
233 233 if ( 'top' == $which ) { 234 234 ?> 235 235 <select name="comment_type"> 236 <option value=""><?php _e( ' Show all comment types' ); ?></option>236 <option value=""><?php _e( 'All comment types' ); ?></option> 237 237 <?php 238 238 /** 239 239 * Filter the comment types dropdown menu. -
src/wp-admin/includes/class-wp-list-table.php
398 398 $m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0; 399 399 ?> 400 400 <select name='m'> 401 <option<?php selected( $m, 0 ); ?> value='0'><?php _e( ' Show all dates' ); ?></option>401 <option<?php selected( $m, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option> 402 402 <?php 403 403 foreach ( $months as $arc_row ) { 404 404 if ( 0 == $arc_row->year ) -
src/wp-admin/includes/media.php
2357 2357 2358 2358 if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?> 2359 2359 <select name='m'> 2360 <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'Show all dates'); ?></option>2360 <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option> 2361 2361 <?php 2362 2362 foreach ($arc_result as $arc_row) { 2363 2363 if ( $arc_row->yyear == 0 )