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/Flag.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Bugzilla/Flag.pm') diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 2052f9507..8c9a4befe 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -34,8 +34,7 @@ use Bugzilla::User; use Bugzilla::Config; use Bugzilla::Util; use Bugzilla::Error; - -use Attachment; +use Bugzilla::Attachment; use constant TABLES_ALREADY_LOCKED => 1; @@ -529,7 +528,7 @@ sub GetTarget { my $target = { 'exists' => 0 }; if ($attach_id) { - $target->{'attachment'} = new Attachment($attach_id); + $target->{'attachment'} = new Bugzilla::Attachment($attach_id); if ($bug_id) { # Make sure the bug and attachment IDs correspond to each other # (i.e. this is the bug to which this attachment is attached). -- cgit v1.2.3-24-g4f1b