From 1428811fd7d4ea3a8c081859fd24a0374e4955ef Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 18 Mar 2005 09:34:32 +0000 Subject: [PATCH] Bug 286311: print "Content-type..." is used instead of print $cgi->header() (cookies aren't sent in header) - Patch by Frederic Buclin (original author: Jacob Steenhagen) r=justdave, a=justdave --- sanitycheck.cgi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sanitycheck.cgi b/sanitycheck.cgi index d7dc59770b..5f67dbae7f 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -84,8 +84,7 @@ my $cgi = Bugzilla->cgi; UserInGroup("editbugs") || ThrowUserError("sanity_check_access_denied"); -print "Content-type: text/html\n"; -print "\n"; +print $cgi->header(); my @row; -- 2.47.3