From 429456196dd7ce8ef7e0876b7e57cdc394a228ba Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Wed, 30 Jan 2002 22:14:10 +0000 Subject: Fix for bug 104521: Removes old attachment interface in favor of new attachment tracker. Patch by Myk Melez . r=bbaetz,kiko --- CGI.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CGI.pl') diff --git a/CGI.pl b/CGI.pl index 90217db18..eb8f5f037 100644 --- a/CGI.pl +++ b/CGI.pl @@ -1270,7 +1270,7 @@ sub DumpBugActivity { while (@row = FetchSQLData()) { my ($field,$attachid,$when,$removed,$added,$who) = (@row); $field =~ s/^Attachment/Attachment #$attachid<\/a>/ - if (Param('useattachmenttracker') && $attachid); + if $attachid; $removed = html_quote($removed); $added = html_quote($added); $removed = " " if $removed eq ""; @@ -1349,7 +1349,7 @@ Edit prefs if (UserInGroup("editcomponents")) { $html .= ", products\n"; $html .= ", - attachment statuses\n" if Param('useattachmenttracker'); + attachment statuses\n"; } if (UserInGroup("creategroups")) { $html .= ", groups\n"; -- cgit v1.2.3-24-g4f1b