From f88fdb0935abc697c402a7f1234af8664a067a9e Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 5 Mar 2009 20:15:10 +0000 Subject: [PATCH] Limit year field to 4 digits. Props sivel. fixes #9120 git-svn-id: https://develop.svn.wordpress.org/trunk@10716 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 4a285be09a..623da13f98 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -2515,7 +2515,7 @@ function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) { $month .= ''; $day = ''; - $year = ''; + $year = ''; $hour = ''; $minute = ''; /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */