From 3d59b2bd807ec35c511fd76df11b2cbb61289242 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Thu, 18 Mar 2004 11:57:04 +0000 Subject: Bug 192516: Moving the loose .pm files into the Bugzilla directory, where they belong. These files pre-date the Bugzilla directory, and would have gone there had it existed at the time. The four files in question were copied on the CVS server to preserve CVS history in the files. This checkin deletes them from the old location and modifies everything else to know where they are now. r= myk, gerv a= justdave --- show_bug.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'show_bug.cgi') diff --git a/show_bug.cgi b/show_bug.cgi index c7a780404..6d971bbfc 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -32,7 +32,7 @@ ConnectToDatabase(); use vars qw($template $vars $userid); -use Bug; +use Bugzilla::Bug; my $cgi = Bugzilla->cgi; @@ -65,10 +65,10 @@ if ($single) { # Its a bit silly to do the validation twice - that functionality should # probably move into Bug.pm at some point ValidateBugID($id); - push @bugs, new Bug($id, $userid); + push @bugs, new Bugzilla::Bug($id, $userid); } else { foreach my $id ($cgi->param('id')) { - my $bug = new Bug($id, $userid); + my $bug = new Bugzilla::Bug($id, $userid); push @bugs, $bug; } } @@ -93,7 +93,7 @@ $vars->{'bug_list'} = \@bug_list; # If no explicit list is defined, we show all fields. We then exclude any # on the exclusion list. This is so you can say e.g. "Everything except # attachments" without listing almost all the fields. -my @fieldlist = (Bug::fields(), 'group', 'long_desc', 'attachment'); +my @fieldlist = (Bugzilla::Bug::fields(), 'group', 'long_desc', 'attachment'); my %displayfields; if ($cgi->param("field")) { -- cgit v1.2.3-24-g4f1b