summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-01-17 19:06:23 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-01-17 19:06:23 +0100
commitbf6d6d8c00c8026825f5134a437e2302d6a6d1be (patch)
treeb08f70a79ace8c9cdfbe1beefa417bc878bf9202 /Bugzilla/Search
parent49b2e80891800a6e0badfbf1d27625d38baafa36 (diff)
parente4206816f0392538934de85323b9f0616cd5fcd7 (diff)
downloadbugzilla-bf6d6d8c00c8026825f5134a437e2302d6a6d1be.tar.gz
bugzilla-bf6d6d8c00c8026825f5134a437e2302d6a6d1be.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r--Bugzilla/Search/Recent.pm4
-rw-r--r--Bugzilla/Search/Saved.pm4
2 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/Search/Recent.pm b/Bugzilla/Search/Recent.pm
index ccd4a0f09..5f04b180b 100644
--- a/Bugzilla/Search/Recent.pm
+++ b/Bugzilla/Search/Recent.pm
@@ -33,6 +33,10 @@ use Bugzilla::Util;
use constant DB_TABLE => 'profile_search';
use constant LIST_ORDER => 'id DESC';
+# Do not track buglists viewed by users.
+use constant AUDIT_CREATES => 0;
+use constant AUDIT_UPDATES => 0;
+use constant AUDIT_REMOVES => 0;
use constant DB_COLUMNS => qw(
id
diff --git a/Bugzilla/Search/Saved.pm b/Bugzilla/Search/Saved.pm
index 9828d6e02..fc773fcde 100644
--- a/Bugzilla/Search/Saved.pm
+++ b/Bugzilla/Search/Saved.pm
@@ -39,6 +39,10 @@ use Scalar::Util qw(blessed);
#############
use constant DB_TABLE => 'namedqueries';
+# Do not track buglists saved by users.
+use constant AUDIT_CREATES => 0;
+use constant AUDIT_UPDATES => 0;
+use constant AUDIT_REMOVES => 0;
use constant DB_COLUMNS => qw(
id