Space bug in wp_title.

git-svn-id: https://develop.svn.wordpress.org/trunk@712 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-01-04 02:34:58 +00:00
parent 8f7ab4d152
commit 1c82c615d5
1 changed files with 1 additions and 1 deletions

View File

@ -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";