diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-06 01:09:32 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-06 01:09:32 -0800 |
commit | c8f80d4dc89eddd4b343cb82ca8a75cfa41f800e (patch) | |
tree | ece4277987602650049d5e59c7485764add8af8e | |
parent | d46ae3f09a8c7b531e1110d46a2f8cdcfa853b11 (diff) | |
download | git-c8f80d4dc89eddd4b343cb82ca8a75cfa41f800e.tar.gz git-c8f80d4dc89eddd4b343cb82ca8a75cfa41f800e.tar.xz |
gitweb: fix mismatched parenthesis
An earlier commit 04179418 broke gitweb. Badly.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index d37411007..653ca3cc6 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; |