From 1c82c615d573451fefab2e879ae6067dbefd9bb9 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sun, 4 Jan 2004 02:34:58 +0000 Subject: [PATCH] Space bug in wp_title. git-svn-id: https://develop.svn.wordpress.org/trunk@712 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php index 98c3adbf87..f8b71b0c77 100644 --- a/wp-includes/template-functions.php +++ b/wp-includes/template-functions.php @@ -97,7 +97,7 @@ function wp_title($sep = '»', $display = true) { if (!empty($year)) { $title = $year; if (!empty($monthnum)) { - $title .= "$sep $monthnum"; + $title .= " $sep $monthnum"; } if (!empty($day)) { $title .= " $sep $day";