| Issue 5: | Addon for /OPER | |
| Back to list |
Not a problem but patch fix:
To make the /OPER command available:
ircClient.php
Line 71: ADD
case 'oper':
$this->oper($param);
break;
LINE 219: ADD
public function oper($userpw)
{
$this->write("OPER $userpw\r\n");
}
|
|
|
|