Ticket #21060: 21060.patch
| File 21060.patch, 881 bytes (added by , 14 years ago) |
|---|
-
wp-admin/options-general.php
231 231 <fieldset><legend class="screen-reader-text"><span><?php _e('Date Format') ?></span></legend> 232 232 <?php 233 233 234 $date_formats = apply_filters( 'date_formats', array (234 $date_formats = apply_filters( 'date_formats', array_unique( array( 235 235 __('F j, Y'), 236 236 'Y/m/d', 237 237 'm/d/Y', 238 238 'd/m/Y', 239 ) ) ;239 ) ) ); 240 240 241 241 $custom = true; 242 242 … … 264 264 <fieldset><legend class="screen-reader-text"><span><?php _e('Time Format') ?></span></legend> 265 265 <?php 266 266 267 $time_formats = apply_filters( 'time_formats', array (267 $time_formats = apply_filters( 'time_formats', array_unique( array( 268 268 __('g:i a'), 269 269 'g:i A', 270 270 'H:i', 271 ) ) ;271 ) ) ); 272 272 273 273 $custom = true; 274 274