summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-12-05 18:49:41 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2011-12-05 18:49:41 +0100
commit373c9de701ac531f5a6934b744812f0f9789e340 (patch)
treee06feedff6b57699fa07147916f4351bd05fa64a /Bugzilla
parent6b0315b816c479f90117b69c9ff57d9c843b9397 (diff)
downloadbugzilla-373c9de701ac531f5a6934b744812f0f9789e340.tar.gz
bugzilla-373c9de701ac531f5a6934b744812f0f9789e340.tar.xz
Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index e0bb2355d..9a0fc955e 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -607,8 +607,8 @@ sub COLUMNS {
Bugzilla::Hook::process('buglist_columns', { columns => \%columns });
- $cache->{search_columns} = \%columns;
- return $cache->{search_columns};
+ $cache->{search_columns}->{$user->id} = \%columns;
+ return $cache->{search_columns}->{$user->id};
}
sub REPORT_COLUMNS {