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

git-svn-id: svn://10.0.0.236/trunk@263132 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2011-12-05 18:01:50 +00:00
parent c3a2ec142d
commit 0f867e6195
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
8030
8031

View File

@ -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 {