gitweb: Fix thinko in git_tags and git_heads
authorJakub Narebski <jnareb@gmail.com>
Tue, 19 Sep 2006 18:47:27 +0000 (20:47 +0200)
committerJunio C Hamano <junkio@cox.net>
Wed, 20 Sep 2006 17:26:08 +0000 (10:26 -0700)
git_get_refs_list always return reference to list (and reference to
hash which we ignore), so $taglist (in git_tags) and $headlist (in
git_heads) are always defined, but @$taglist / @$headlist might be
empty. Replaced incorrect "if (defined @$taglist)" with
"if (@$taglist)" in git_tags and respectively in git_heads.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
No differences found