Skip to content

Commit

Permalink
Fixes a caching issue.
Browse files Browse the repository at this point in the history
git-svn-id: svn://cherokee-project.com/web/branches/beta-ctk@6729 5dc97367-97f1-0310-9951-d761b3857238
  • Loading branch information
alobbs committed May 27, 2011
1 parent 0a1c2f5 commit c42d911
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PageDownload.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ def __call__ (self):
mirrors = Mirror_Sites.Mirrors()
page.sidebar += mirrors

return CTK.HTTP_Cacheable (60, body=page.Render())
# This page cannot be cached. It'd break the OS detection.
return page.Render()


CTK.publish (r'^%s(\.html)?$'%(URL_BASE), QuickStart)
Expand Down

0 comments on commit c42d911

Please sign in to comment.