Changeset 2071
- Timestamp:
- 01/09/05 02:40:06 (4 years ago)
- Files:
-
- trunk/wp-includes/template-functions-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/template-functions-general.php
r2068 r2071 607 607 608 608 function get_the_time( $d = '' ) { 609 global $id, $post;610 609 if ( '' == $d ) 611 610 $the_time = date( get_settings('time_format'), get_post_time() ); 612 611 else 613 $the_time = mysql2date( $d, get_post_time() );612 $the_time = date( $d, get_post_time() ); 614 613 return apply_filters('get_the_time', $the_time); 615 614 }
