Shane Hathaway wrote:
Brent Hendricks wrote:
Cool, thanks for reply. If I send in the 1-line patch is there a chance of it getting applied on the 2.6/2.7 branch?
CookieCrumbler isn't a part of core Zope. Send me the patch and I'll
Errr yeah, I knew that :)
include it in CMF and the standalone product.
OK, Attaching. Thanks! --Brent Index: CookieCrumbler.py =================================================================== RCS file: /cvs-repository/Products/CookieCrumbler/CookieCrumbler.py,v retrieving revision 1.12 diff -u -r1.12 CookieCrumbler.py --- CookieCrumbler.py 19 Feb 2003 19:03:20 -0000 1.12 +++ CookieCrumbler.py 24 Apr 2003 22:33:18 -0000 @@ -123,7 +123,7 @@ if req.__class__ is not HTTPRequest: return ATTEMPT_DISABLED - if not req[ 'REQUEST_METHOD' ] in ( 'GET', 'PUT', 'POST' ): + if not req[ 'REQUEST_METHOD' ] in ( 'HEAD', 'GET', 'PUT', 'POST' ): return ATTEMPT_DISABLED if req.environ.has_key( 'WEBDAV_SOURCE_PORT' ):