Bernhard R. Link wrote: > @@ -6066,7 +6069,7 @@ sub git_summary { > > if ($check_forks) { > # find forks of a project > - @forklist = git_get_projects_list($project); > + @forklist = git_get_projects_list($project =~ s/\.git$//r); > # filter out forks of forks > @forklist = filter_forks_from_projects_list(\@forklist) > if (@forklist); > -- The '/r' non-destructive modifier for regexp replacement is quite new invention and requires Perl 5.14, while gitweb requires Perl 5.8.x something. Please don't use it. You can use this instead. (my $filter = $project) =~ s/\.git$// -- Jakub Narebski Poland -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html