Do not force downcase on URLs. Fixes #621

This commit is contained in:
Jamie Oliver
2013-08-04 18:27:32 +01:00
parent 9c714e7687
commit 90e20810d5
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class String
# _Header => header which causes errors
def to_url
return nil if self.nil?
upstream_to_url :exclude => ['_Header', '_Footer', '_Sidebar']
upstream_to_url :exclude => ['_Header', '_Footer', '_Sidebar'], :force_downcase => false
end
end