Need a space between year and raquo
-
I am using WordPress version 2.5.1.
When I click on a item on sidebar – archives, the page that opens have title something like this
BLOG TITLE ? 2008? June
You see there is a space missing between the year “2008” and the raquo.
I opened up general-template.php and found this on line 219.
$title = "$my_year" . ($my_month ? "$sep $my_month" : "") . ($my_day ? "$sep $my_day" : "");
then I fixed this to
$title = "$my_year " . ($my_month ? "$sep $my_month" : "") . ($my_day ? "$sep $my_day" : "");
I added a space after
$my_year
.Isn’t this correct?
Am I the only one w/ this problem?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Need a space between year and raquo’ is closed to new replies.