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 --- Bugzilla/Bug.pm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'Bugzilla/Bug.pm') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 94bd628e2..b1c2ea54d 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -20,12 +20,14 @@ # Contributor(s): Dawn Endico # Terry Weissman # Chris Yeh +# Bradley Baetz +# Dave Miller -package Bug; +package Bugzilla::Bug; use strict; -use RelationSet; +use Bugzilla::RelationSet; use vars qw($unconfirmedstate $legal_keywords @legal_platform @legal_priority @legal_severity @legal_opsys @legal_bugs_status @settable_resolution %components %versions %target_milestone @@ -33,7 +35,7 @@ use vars qw($unconfirmedstate $legal_keywords @legal_platform use CGI::Carp qw(fatalsToBrowser); -use Attachment; +use Bugzilla::Attachment; use Bugzilla::Config; use Bugzilla::Constants; use Bugzilla::Flag; @@ -190,7 +192,7 @@ sub initBug { $self->{'qa_contact'} = undef; } - my $ccSet = new RelationSet; + my $ccSet = new Bugzilla::RelationSet; $ccSet->mergeFromDB("select who from cc where bug_id=$bug_id"); my @cc = $ccSet->toArrayOfStrings(); if (@cc) { @@ -212,7 +214,7 @@ sub initBug { } } - $self->{'attachments'} = Attachment::query($self->{bug_id}); + $self->{'attachments'} = Bugzilla::Attachment::query($self->{bug_id}); # The types of flags that can be set on this bug. # If none, no UI for setting flags will be displayed. -- cgit v1.2.3-24-g4f1b