From: Frédéric Buclin Date: Mon, 5 Dec 2011 17:49:41 +0000 (+0100) Subject: Forgot to fix all occurences of $cache->{search_columns}->{$user->id}, see bug 550299 X-Git-Tag: bugzilla-4.3.1~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=373c9de701ac531f5a6934b744812f0f9789e340;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 e0bb2355d3..9a0fc955e8 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -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 {