Update of /cvs-repository/Packages/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv25453/lib/python/ZPublisher

Modified Files:
      Tag: Zope-2_7-branch
        HTTPResponse.py 
Log Message:
Collector #1864, #1906: fixed header normalization in appendHeader()


=== Packages/ZPublisher/HTTPResponse.py 1.75.2.9 => 1.75.2.10 ===
--- Packages/ZPublisher/HTTPResponse.py:1.75.2.9        Wed Dec 22 10:51:28 2004
+++ Packages/ZPublisher/HTTPResponse.py Sat Sep 24 06:37:19 2005
@@ -533,7 +533,7 @@
         Sets an HTTP return header "name" with value "value",
         appending it following a comma if there was a previous value
         set for the header. '''
-        name = str(name)
+        name = str(name).lower()
         value = str(value)
 
         headers = self.headers

_______________________________________________
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins

Reply via email to