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 --- post_bug.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'post_bug.cgi') diff --git a/post_bug.cgi b/post_bug.cgi index dbc102d3e..d6fda9b3b 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -30,7 +30,7 @@ use Bugzilla; use Bugzilla::Constants; require "CGI.pl"; -use Bug; +use Bugzilla::Bug; use Bugzilla::User; @@ -478,7 +478,7 @@ if (defined $::FORM{'qa_contact'}) { } $vars->{'id'} = $id; -my $bug = new Bug($id, $::userid); +my $bug = new Bugzilla::Bug($id, $::userid); $vars->{'bug'} = $bug; ThrowCodeError("bug_error", { bug => $bug }) if $bug->error; -- cgit v1.2.3-24-g4f1b