Merge pull request #18 from CodeBlock/master

IRC nick regex.
This commit is contained in:
Evan Priestley
2011-06-13 17:02:26 -07:00

View File

@@ -56,9 +56,9 @@ final class PhabricatorIRCBot extends PhabricatorDaemon {
$nick = idx($config, 'nick', 'phabot');
if (!preg_match('/^[A-Za-z0-9_]+$/', $nick)) {
if (!preg_match('/^[A-Za-z0-9_`[{}^|\]\\-]+$/', $nick)) {
throw new Exception(
"Nickname '{$nick}' is invalid, must be alphanumeric!");
"Nickname '{$nick}' is invalid!");
}
if (!$join) {