From 8fda96466449229f502faf490e9d333b3024aec5 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Thu, 12 Jan 2012 00:08:11 +0100 Subject: Bug 715902: Do not log personal common activities in audit_log r=dkl a=LpSolit --- Bugzilla/Search/Recent.pm | 4 ++++ Bugzilla/Search/Saved.pm | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'Bugzilla/Search') 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 -- cgit v1.2.3-24-g4f1b