From a6d120fa5359e423f855a04bbb698c2043eb2e0d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Mon, 5 Dec 2011 18:51:18 +0100 Subject: [PATCH] Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299 --- Bugzilla/Search.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 77299ff38a..736b1af6f3 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 { -- 2.47.2