diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-06-22 08:52:57 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-22 02:25:39 -0700 |
commit | 8adc4bd4a5e800a16e5680f4825ca76ed7cf9a2e (patch) | |
tree | e9d60f05b97956f2da414d1c158373b36e133773 /gitweb/gitweb.cgi | |
parent | 4c5c20261c5403650a31a91ebce0cc9444182383 (diff) | |
download | git-8adc4bd4a5e800a16e5680f4825ca76ed7cf9a2e.tar.gz git-8adc4bd4a5e800a16e5680f4825ca76ed7cf9a2e.tar.xz |
gitweb: whitespace cleanup around '='
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb/gitweb.cgi')
-rwxr-xr-x | gitweb/gitweb.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi index e2108dee7..035e76d0a 100755 --- a/gitweb/gitweb.cgi +++ b/gitweb/gitweb.cgi @@ -327,7 +327,7 @@ EOF } elsif (defined $hash) { $search_hash = $hash; } else { - $search_hash = "HEAD"; + $search_hash = "HEAD"; } $cgi->param("a", "search"); $cgi->param("h", $search_hash); @@ -1767,8 +1767,8 @@ sub git_opml { } my $path = esc_html(chop_str($proj{'path'}, 25, 5)); - my $rss = "$my_url?p=$proj{'path'};a=rss"; - my $html = "$my_url?p=$proj{'path'};a=summary"; + my $rss = "$my_url?p=$proj{'path'};a=rss"; + my $html = "$my_url?p=$proj{'path'};a=summary"; print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n"; } print "</outline>\n". @@ -1943,7 +1943,7 @@ sub git_commit { "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$co{'tree'};hb=$hash")}, "tree") . "</td>" . "</tr>\n"; - my $parents = $co{'parents'}; + my $parents = $co{'parents'}; foreach my $par (@$parents) { print "<tr>" . "<td>parent</td>" . |