From 23b18f81aae0e4af5bc5112111b9b69a2460770c Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" Date: Wed, 31 Jul 2002 12:46:02 +0000 Subject: [PATCH] Bug 160227 - VERSION cookie not set correctly r=myk git-svn-id: svn://10.0.0.236/trunk@126109 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/post_bug.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/post_bug.cgi b/mozilla/webtools/bugzilla/post_bug.cgi index 8bba70d5983..2edb1aca42a 100755 --- a/mozilla/webtools/bugzilla/post_bug.cgi +++ b/mozilla/webtools/bugzilla/post_bug.cgi @@ -75,8 +75,8 @@ my $product = $::FORM{'product'}; my $cookiepath = Param("cookiepath"); if (exists $::FORM{'product'}) { if (exists $::FORM{'version'}) { - print "Set-Cookie: VERSION-$product=$::FORM{'version'} ; \ - path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n"; + print "Set-Cookie: VERSION-$product=$::FORM{'version'} ; " . + "path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n"; } }