Changeset 22299
- Timestamp:
- 10/25/2012 08:15:47 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r22019 r22299 231 231 <?php 232 232 233 $date_formats = a pply_filters( 'date_formats', array(233 $date_formats = array_unique( apply_filters( 'date_formats', array( 234 234 __('F j, Y'), 235 235 'Y/m/d', 236 236 'm/d/Y', 237 237 'd/m/Y', 238 ) ) ;238 ) ) ); 239 239 240 240 $custom = true; … … 264 264 <?php 265 265 266 $time_formats = a pply_filters( 'time_formats', array(266 $time_formats = array_unique( apply_filters( 'time_formats', array( 267 267 __('g:i a'), 268 268 'g:i A', 269 269 'H:i', 270 ) ) ;270 ) ) ); 271 271 272 272 $custom = true;
Note: See TracChangeset
for help on using the changeset viewer.