summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-12-05 18:51:18 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2011-12-05 18:51:18 +0100
commita6d120fa5359e423f855a04bbb698c2043eb2e0d (patch)
treebe8341b3731532064512ad0506f7cb2c2b699f84 /Bugzilla/Search.pm
parenta0256cf7a6d211d0b38a6fa158be2420275e63ff (diff)
downloadbugzilla-a6d120fa5359e423f855a04bbb698c2043eb2e0d.tar.gz
bugzilla-a6d120fa5359e423f855a04bbb698c2043eb2e0d.tar.xz
Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 77299ff38..736b1af6f 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -608,8 +608,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 {