my $check_forks = gitweb_check_feature('forks');
my @projects = fill_project_list_info($projlist, $check_forks);
-
+ my $count;
$order ||= $default_projects_order;
$from = 0 unless defined $from;
$to = $#projects if (!defined $to || $#projects < $to);
my $alternate = 1;
my $tagfilter = $cgi->param('by_tag');
for (my $i = $from; $i <= $to; $i++) {
+ $count++;
my $pr = $projects[$i];
next if $tagfilter and $show_ctags and not grep { lc $_ eq lc $tagfilter } keys %{$pr->{'ctags'}};
"</td>\n" .
"</tr>\n";
}
+ print "<tr><td> </td><td> </td><td>".$count." projects found</td><td> </td><td> </td></tr>";
if (defined $extra) {
print "<tr>\n";
if ($check_forks) {