diff options
author | justdave%syndicomm.com <> | 2004-03-18 11:57:04 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2004-03-18 11:57:04 +0000 |
commit | 3d59b2bd807ec35c511fd76df11b2cbb61289242 (patch) | |
tree | f3071da3563a70dd4c88ea0fa5505eef4baf4385 /show_bug.cgi | |
parent | 962c6c28c25c354d7b3757f1b3cb3665cbde14b0 (diff) | |
download | bugs-3d59b2bd807ec35c511fd76df11b2cbb61289242.tar bugs-3d59b2bd807ec35c511fd76df11b2cbb61289242.tar.gz bugs-3d59b2bd807ec35c511fd76df11b2cbb61289242.tar.bz2 bugs-3d59b2bd807ec35c511fd76df11b2cbb61289242.tar.xz bugs-3d59b2bd807ec35c511fd76df11b2cbb61289242.zip |
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
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-x | show_bug.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
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")) { |