summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-02-15 09:44:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-15 09:44:11 (GMT)
commit2a8644c7f163e4b76a36739ba936f8d5d91c3cf4 (patch)
tree482f1b1d8ce442af6aa7b39d2593a66ad615857c /gitweb
parentc42b04bbb0cdf7618d3bdb57ed02569a5f128fe9 (diff)
parentccb04f99fe3858bae0f06fc7aeefc4d53fec1352 (diff)
downloadgit-2a8644c7f163e4b76a36739ba936f8d5d91c3cf4.zip
git-2a8644c7f163e4b76a36739ba936f8d5d91c3cf4.tar.gz
git-2a8644c7f163e4b76a36739ba936f8d5d91c3cf4.tar.bz2
Merge branch 'jn/gitweb-committag'
* jn/gitweb-committag: gitweb: Better regexp for SHA-1 committag match
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 5410874..8dffa3f 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1368,7 +1368,7 @@ sub format_log_line_html {
my $line = shift;
$line = esc_html($line, -nbsp=>1);
- if ($line =~ m/([0-9a-fA-F]{8,40})/) {
+ if ($line =~ m/\b([0-9a-fA-F]{8,40})\b/) {
my $hash_text = $1;
my $link =
$cgi->a({-href => href(action=>"object", hash=>$hash_text),