Commit: eea9a137f9df7927c7fd1af0ce99dd2953ea26ed

Author: Niel Archer | Date: 2010-02-18 22:37:51 +0000
Adding '#' to link regex.
diff --git a/views/logs/view.html.php b/views/logs/view.html.php index 7e348c0..211003d 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']) );