﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5562	delete_cookie function in HttpResponse should set 'expires' to a time string, not 0	ljpsfree <caifen1985@…>	nobody	" * In this function, 
 {{{
   self.cookies[key]['expires'] = 0
 }}}
 * Here the expire time set to a number, but it should set to a time string. The browser can't set the expire time for this cookie, so it will not be removed.I just set the expires time to a GMT beginning time string, and it works correct.
 {{{
  self.cookies[key]['expires'] = ""Thu 1-Jan-1970 00:00:00 GMT""
 }}}
"		closed	HTTP handling	dev		fixed			Ready for checkin	1	0	0	0	0	0
