From 13e95846846648f4588c909fe105c149f58ddb78 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Sun, 4 Jan 2004 02:34:58 +0000 Subject: [PATCH] Space bug in wp_title. git-svn-id: http://svn.automattic.com/wordpress/trunk@712 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 98c3adbf8..f8b71b0c7 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";