1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 21:02:41 +01:00

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
commit 961a1498aa

View file

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