Commit: 3bc460b400e2469b5e2ea9bb58200863500d9ccc

Author: Niel Archer | Date: 2010-01-29 18:35:09 +0000
Fixing link regex.
diff --git a/views/logs/view.html.php b/views/logs/view.html.php index 7752718..7e348c0 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']) );