]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixing bug #46897
authortara%tequilarista.org <>
Tue, 8 Aug 2000 05:59:54 +0000 (05:59 +0000)
committertara%tequilarista.org <>
Tue, 8 Aug 2000 05:59:54 +0000 (05:59 +0000)
buglist.cgi
long_list.cgi
reports.cgi

index b9c6c4f343e06b1624f9761a25cf171357747311..c59a4d82aa35eedccffe44a73b44f1f9bd41415f 100755 (executable)
@@ -764,7 +764,9 @@ if (exists $ENV{'HTTP_USER_AGENT'} && $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/
     # Note! HTML header is complete!
 } else {
     print "Content-type: text/html\n";
-    print "Content-disposition: attachment; filename=bugzilla_bug_list.html\n";
+    #Changing attachment to inline to resolve 46897
+    #zach@zachlipton.com
+    print "Content-disposition: inline; filename=bugzilla_bug_list.html\n";
     # Note! Don't finish HTML header yet!  Only one newline so far!
 }
 
index c2be914e26e7f98fdfca1c78ee088c4825609e15..5623a4e12459817991824101e63c4c4498bd217a 100755 (executable)
@@ -37,7 +37,9 @@ sub sillyness {
 }
 
 print "Content-type: text/html\n";
-print "Content-disposition: attachement; filename=bugzilla_bug_list.html\n\n";
+#Changing attachment to inline to resolve 46897
+#zach@zachlipton.com
+print "Content-disposition: inline; filename=bugzilla_bug_list.html\n\n";
 PutHeader ("Full Text Bug Listing");
 
 ConnectToDatabase();
index b4102a9f7e0e0497aa3e9d6709be4d94cb49c011..dd081ad1286d49b7df04d633b2bf545caa9cdbfa 100755 (executable)
@@ -60,7 +60,9 @@ my %reports =
 quietly_check_login();
 
 print "Content-type: text/html\n";
-print "Content-disposition: attachment; filename=bugzilla_report.html\n\n";
+  #Changing attachment to inline to resolve 46897
+    #zach@zachlipton.com
+print "Content-disposition: inline; filename=bugzilla_report.html\n\n";
 
 # If we're here for the first time, give a banner.  Else respect the banner flag.
 if ( (!defined $::FORM{'product'}) || ($::FORM{'banner'})  )