mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-11 15:21:03 +01:00
Fix lint error
This commit is contained in:
parent
70a8e8b6e8
commit
14cfdeca92
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue