Fix lint error

This commit is contained in:
vrana 2012-08-15 13:16:02 -07:00
parent 70a8e8b6e8
commit 14cfdeca92

View file

@ -50,7 +50,7 @@ abstract class PhabricatorIRCHandler {
}
final protected function isChannelName($name) {
return (strpos($name, '#') === 0);
return (strncmp($name, '#', 1) === 0);
}
abstract public function receiveMessage(PhabricatorIRCMessage $message);