Commit 373c9de7 authored by Frédéric Buclin's avatar Frédéric Buclin

Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299

parent 6b0315b8
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment