summaryrefslogtreecommitdiffstats
path: root/post_bug.cgi
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-07-31 21:46:02 +0200
committerbbaetz%student.usyd.edu.au <>2002-07-31 21:46:02 +0200
commit2cc0f37973df10b9ba143a9d14a8f0afd8547914 (patch)
tree058961f31b0439032cbe018526f1d18cd5cf339c /post_bug.cgi
parent99930ca5c23c93cd177c587899f38c7d93509280 (diff)
downloadbugzilla-2cc0f37973df10b9ba143a9d14a8f0afd8547914.tar.gz
bugzilla-2cc0f37973df10b9ba143a9d14a8f0afd8547914.tar.xz
Bug 160227 - VERSION cookie not set correctly
r=myk
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-xpost_bug.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/post_bug.cgi b/post_bug.cgi
index 8bba70d59..2edb1aca4 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";
}
}