Commit: 28a88970d74070bf4b0b4421a645d65fac010b3f

Author: Niel Archer | Date: 2010-01-29 00:30:18 +0000
Fixing link regex.
diff --git a/views/logs/view.html.php b/views/logs/view.html.php index ffccd76..7752718 100644 --- a/views/logs/view.html.php +++ b/views/logs/view.html.php @@ -5,7 +5,7 @@ $rgb = array($hash % 255, $hash % 255, $hash % 255); $rgb[$hash % 2] = 0; $message = preg_replace( - '@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', + '@(https?://([-\w\.]+)+(:\d+)?(/([-\w/_\.]*(\?\S+)?)?)?)@', '<a href="$1">$1</a>', $h($line['message']) );