Commit: 25a4d9fe4b0b9e96e49abc099956512b3725e7ad

Author: Niel Archer | Date: 2010-03-26 13:02:50 +0000
Adding '{}=' to the link regex.
diff --git a/views/logs/view.html.php b/views/logs/view.html.php index 0cea460..324741e 100644 --- a/views/logs/view.html.php +++ b/views/logs/view.html.php @@ -6,7 +6,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']) );