aboutsummaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2007-12-20 10:48:09 +0100
committerJunio C Hamano <gitster@pobox.com>2007-12-20 19:07:24 -0800
commitd76a585d83aeb6910e7eb10d36b406dc27202675 (patch)
tree85d951d8cd061d7a6d86cb0861bb6cdd515eb40f /gitweb
parent8a82b133547a93e8bdc08fd199c237f540eb9249 (diff)
downloadgit-d76a585d83aeb6910e7eb10d36b406dc27202675.tar.gz
git-d76a585d83aeb6910e7eb10d36b406dc27202675.tar.xz
gitweb: fix whitespace in config_to_multi (indent with tab)
Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 28bb8c393..6256641ac 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1511,7 +1511,7 @@ sub config_to_int {
sub config_to_multi {
my $val = shift;
- return ref($val) ? $val : (defined($val) ? [ $val ] : []);
+ return ref($val) ? $val : (defined($val) ? [ $val ] : []);
}
sub git_get_project_config {