summaryrefslogtreecommitdiffstats
path: root/whine.pl
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-07-15 13:13:29 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-07-15 13:13:29 +0200
commited9e593a9324dffd0d2c0087889e4b6798e25f2f (patch)
tree744c3bfe72340d8c984b2846f53ca4a787f23d50 /whine.pl
parenta8577a8e73b15608c09f70b9c326196832934407 (diff)
downloadbugzilla-ed9e593a9324dffd0d2c0087889e4b6798e25f2f.tar.gz
bugzilla-ed9e593a9324dffd0d2c0087889e4b6798e25f2f.tar.xz
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)
Diffstat (limited to 'whine.pl')
-rwxr-xr-xwhine.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/whine.pl b/whine.pl
index 1f22b65fc..789cea79e 100755
--- a/whine.pl
+++ b/whine.pl
@@ -449,7 +449,7 @@ sub run_queries {
'params' => $searchparams,
'user' => $args->{'recipient'}, # the search runs as the recipient
);
- my $sqlquery = $search->getSQL();
+ my $sqlquery = $search->sql;
$sth = $dbh->prepare($sqlquery);
$sth->execute;