diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-01-12 00:05:36 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-01-12 00:05:36 +0100 |
commit | bdbf87750c1769584e3e672c9ae93c71ad3de273 (patch) | |
tree | 6c1f9a8c00fb210e02a15369479b11fea79c324c /Bugzilla/Search | |
parent | fe2a998bfe82513f5ab5a8dc9d373d57c9c68ec5 (diff) | |
download | bugzilla-bdbf87750c1769584e3e672c9ae93c71ad3de273.tar.gz bugzilla-bdbf87750c1769584e3e672c9ae93c71ad3de273.tar.xz |
Bug 715902: Do not log personal common activities in audit_log
r=dkl a=LpSolit
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r-- | Bugzilla/Search/Recent.pm | 4 | ||||
-rw-r--r-- | Bugzilla/Search/Saved.pm | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/Search/Recent.pm b/Bugzilla/Search/Recent.pm index cea086444..02c3ec37a 100644 --- a/Bugzilla/Search/Recent.pm +++ b/Bugzilla/Search/Recent.pm @@ -19,6 +19,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 bb8b62a92..f7d5971d4 100644 --- a/Bugzilla/Search/Saved.pm +++ b/Bugzilla/Search/Saved.pm @@ -26,6 +26,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 |