Make WordPress Core

Opened 20 years ago

Closed 20 years ago

#539 closed defect (bug) (fixed)

1.3-alpha-5 get_[year|month|day]_link functions produce broken links in sidebar

Reported by: funkknight's profile funkknight Owned by: ryan's profile ryan
Milestone: Priority: normal
Severity: minor Version:
Component: Template Keywords:
Focuses: Cc:

Description

Archive and Calendar links are generated as:
http://website.org2004/12/12/
(missing slash between dns and path)

To get it working I changed the following line in the get_[year|month|day]_link functions in the file "wp-includes/templates-functions-links.php":

return get_settings('home') trailingslashit($monthlink);
to
return get_settings('home') .'/'. trailingslashit($monthlink);

Permalink structure of: /entry/%posttitle%

Change History (2)

#1 @funkknight
20 years ago

  • Patch set to No

#2 @ryan
20 years ago

  • fixed_in_version set to 1.3
  • Owner changed from anonymous to rboren
  • Resolution changed from 10 to 20
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.