diff options
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 4 |
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"; } } |