From: bbaetz%student.usyd.edu.au <> Date: Thu, 1 Aug 2002 16:59:32 +0000 (+0000) Subject: Bug 160227 - VERSION cookie not set correctly X-Git-Tag: bugzilla-2.16.1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2cbeba26e4a092caf076610c074de20b78c43c8;p=thirdparty%2Fbugzilla.git Bug 160227 - VERSION cookie not set correctly r=myk x2 --- diff --git a/post_bug.cgi b/post_bug.cgi index 8bba70d598..2edb1aca42 100755 --- a/post_bug.cgi +++ b/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"; } }