From 7f9aa3c3509566e3a96ab9b01f0f1ef9f541bca8 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 25 Mar 2007 23:47:48 +0000 Subject: [PATCH] Fix day display in title. Props phKU. fixes #3801 git-svn-id: http://svn.automattic.com/wordpress/trunk@5106 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 36e473854..a50f47949 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -201,7 +201,8 @@ function wp_title($sep = '»', $display = true) { if ( !empty($m) ) { $my_year = substr($m, 0, 4); $my_month = $wp_locale->get_month($m); - $title = "$my_year $sep $my_month"; + $my_day = intval(substr($m, 6, 2)); + $title = "$my_year" . ($my_month ? "$sep $my_month" : "") . ($my_day ? "$sep $my_day" : ""); } if ( !empty($year) ) {