Fix post time display. Bug 636.

git-svn-id: http://svn.automattic.com/wordpress/trunk@2071 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rboren 2005-01-09 02:40:06 +00:00
parent f67ca5c196
commit 7f29387599

View File

@ -606,11 +606,10 @@ function the_time( $d = '' ) {
}
function get_the_time( $d = '' ) {
global $id, $post;
if ( '' == $d )
$the_time = date( get_settings('time_format'), get_post_time() );
else
$the_time = mysql2date( $d, get_post_time() );
$the_time = date( $d, get_post_time() );
return apply_filters('get_the_time', $the_time);
}