diff options
author | cash <cash.costello@gmail.com> | 2011-11-18 21:35:15 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-18 21:35:15 -0500 |
commit | d9848f73bdfbf3bca6fbfe9939e307775279da91 (patch) | |
tree | 8d611f6c761c4f055e159e2f1a89123884e98901 /mod/thewire/start.php | |
parent | 0aacda8b1fa77999f4e00d73e9fd1c416d75f920 (diff) | |
download | elgg-d9848f73bdfbf3bca6fbfe9939e307775279da91.tar.gz elgg-d9848f73bdfbf3bca6fbfe9939e307775279da91.tar.bz2 |
Fixes #4085 accepting . in usernames for the wire
Diffstat (limited to 'mod/thewire/start.php')
-rw-r--r-- | mod/thewire/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/start.php b/mod/thewire/start.php index c0890344f..328e5d46c 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -217,7 +217,7 @@ function thewire_filter($text) { // usernames $text = preg_replace( - '/(^|[^\w])@([\w]+)/', + '/(^|[^\w])@([\w.]+)/', '$1<a href="' . $CONFIG->wwwroot . 'thewire/owner/$2">@$2</a>', $text); |