diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-12-05 18:51:18 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-12-05 18:51:18 +0100 |
commit | a6d120fa5359e423f855a04bbb698c2043eb2e0d (patch) | |
tree | be8341b3731532064512ad0506f7cb2c2b699f84 /Bugzilla | |
parent | a0256cf7a6d211d0b38a6fa158be2420275e63ff (diff) | |
download | bugzilla-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')
-rw-r--r-- | Bugzilla/Search.pm | 4 |
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 { |