From 8668a6b69317d5c81d70e9bb8904a847124b49fa Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sun, 5 Apr 2015 20:38:58 -0700 Subject: [PATCH] gitweb: replace incorrect '=' with '=>' Caching should be working properly now. Signed-off-by: Kyle J. McKay --- gitweb/gitweb.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 7d6b319bf4..0effd98835 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -5677,7 +5677,7 @@ sub fill_project_list_info { } if ($projlist_cache_lifetime) { my @all_projects = git_get_projects_list(); - my %all_projects_filled = map { ($_->{'path'} = $_) } + my %all_projects_filled = map { ( $_->{'path'} => $_ ) } fill_project_list_info_uncached(\@all_projects); map { $all_projects_filled{$_->{'path'}} = $_ } filter_forks_from_projects_list([values(%all_projects_filled)]) -- 2.11.4.GIT