From: Junio C Hamano <junkio@cox.net>
Date: Tue, 6 Feb 2007 09:09:32 +0000 (-0800)
Subject: gitweb: fix mismatched parenthesis
X-Git-Tag: v1.5.0-rc4~19
X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/c8f80d4dc89eddd4b343cb82ca8a75cfa41f800e

gitweb: fix mismatched parenthesis

An earlier commit 04179418 broke gitweb.  Badly.

Signed-off-by: Junio C Hamano <junkio@cox.net>
---

diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index d374110070..653ca3cc60 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1963,7 +1963,7 @@ sub git_print_page_path {
 
 	print "<div class=\"page_path\">";
 	print $cgi->a({-href => href(action=>"tree", hash_base=>$hb),
-	              -title => 'tree root'}, to_utf8("[$project]");
+	              -title => 'tree root'}, to_utf8("[$project]"));
 	print " / ";
 	if (defined $name) {
 		my @dirname = split '/', $name;