From 834f1bfaae9718d6834ede15dcad15c3bfa16072 Mon Sep 17 00:00:00 2001 From: umesh Date: Thu, 22 May 2025 20:48:33 +0530 Subject: [PATCH] Fix: Removed unwanted commented HTML code for Edit timestamp checkbox. It is in todo list and It is not required anywhere. (Trac #63476) --- src/wp-admin/includes/template.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php index 127027d8f543d..16da3388aee65 100644 --- a/src/wp-admin/includes/template.php +++ b/src/wp-admin/includes/template.php @@ -817,9 +817,6 @@ function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) { $tab_index_attribute = " tabindex=\"$tab_index\""; } - // @todo Remove this? - // echo '
'; - $post_date = ( $for_post ) ? $post->post_date : get_comment()->comment_date; $jj = ( $edit ) ? mysql2date( 'd', $post_date, false ) : current_time( 'd' ); $mm = ( $edit ) ? mysql2date( 'm', $post_date, false ) : current_time( 'm' );