diff options
author | Bruno Ribas <ribas@c3sl.ufpr.br> | 2008-01-30 03:37:56 -0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-29 23:55:18 -0800 |
commit | c1dcf7ebf222e7c24b89b40bc00a6ca5e9e2eec6 (patch) | |
tree | 7073860d33c0abc6a7d53f2fed45b637c4de3606 /gitweb | |
parent | d661146ac2ada526e80dbb6234f8f8da6642ffcb (diff) | |
download | git-c1dcf7ebf222e7c24b89b40bc00a6ca5e9e2eec6.tar.gz git-c1dcf7ebf222e7c24b89b40bc00a6ca5e9e2eec6.tar.xz |
gitweb: Make use of the $git_dir variable at sub git_get_project_description
Signed-off-by: Bruno Ribas <ribas@c3sl.ufpr.br>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-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 80e3d0ac4..ae2d05763 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1606,7 +1606,7 @@ sub git_get_project_description { my $path = shift; $git_dir = "$projectroot/$path"; - open my $fd, "$projectroot/$path/description" + open my $fd, "$git_dir/description" or return git_get_project_config('description'); my $descr = <$fd>; close $fd; |