Changeset 6995 for trunk/wp-includes/functions.php
- Timestamp:
- 02/23/2008 10:11:47 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r6984 r6995 6 6 if ( empty( $m ) ) 7 7 return false; 8 9 if( 'G' == $dateformatstring ) { 10 return gmmktime( 11 (int) substr( $m, 11, 2 ), (int) substr( $m, 14, 2 ), (int) substr( $m, 17, 2 ), 12 (int) substr( $m, 5, 2 ), (int) substr( $m, 8, 2 ), (int) substr( $m, 0, 4 ) 13 ); 14 } 15 8 16 $i = mktime( 9 17 (int) substr( $m, 11, 2 ), (int) substr( $m, 14, 2 ), (int) substr( $m, 17, 2 ),
Note: See TracChangeset
for help on using the changeset viewer.