From: Frédéric Buclin Date: Mon, 5 Dec 2011 17:51:18 +0000 (+0100) Subject: Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299 X-Git-Tag: bugzilla-4.2rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6d120fa5359e423f855a04bbb698c2043eb2e0d;p=thirdparty%2Fbugzilla.git Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299 --- 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 {