From ed9e593a9324dffd0d2c0087889e4b6798e25f2f Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Thu, 15 Jul 2010 04:13:29 -0700 Subject: Bug 577800: Finish the cleanup of Search.pm's "init" function by removing it and having its work be done by a new "sql" accessor instead. Also adds some comments, moves functions around into sections, and creates a new _user accessor. r=mkanat, a=mkanat (module owner) --- report.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'report.cgi') diff --git a/report.cgi b/report.cgi index 5d2679e1e..89f5ff674 100755 --- a/report.cgi +++ b/report.cgi @@ -128,7 +128,7 @@ my @axis_fields = ($row_field || EMPTY_COLUMN, my $params = new Bugzilla::CGI($cgi); my $search = new Bugzilla::Search('fields' => \@axis_fields, 'params' => $params); -my $query = $search->getSQL(); +my $query = $search->sql; $::SIG{TERM} = 'DEFAULT'; $::SIG{PIPE} = 'DEFAULT'; -- cgit v1.2.3-24-g4f1b