Signed-off-by: Sylvain Rabot <sylvain@xxxxxxxxxxxxxx> --- gitweb/gitweb.perl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index db18d06..9398475 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -5127,13 +5127,13 @@ sub git_remote_block { if (defined $fetch) { if ($fetch eq $push) { - $urls_table .= format_repo_url("URL", $fetch); + $urls_table .= format_repo_url("<strong>URL:</strong>", $fetch); } else { - $urls_table .= format_repo_url("Fetch URL", $fetch); - $urls_table .= format_repo_url("Push URL", $push) if defined $push; + $urls_table .= format_repo_url("<strong>Fetch URL:</strong>", $fetch); + $urls_table .= format_repo_url("<strong>Push URL:</strong>", $push) if defined $push; } } elsif (defined $push) { - $urls_table .= format_repo_url("Push URL", $push); + $urls_table .= format_repo_url("<strong>Push URL:</strong>", $push); } else { $urls_table .= format_repo_url("", "No remote URL"); } -- 1.7.3.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html