forked from GNUsocial/gnu-social
Corrected UTF8 to UTF-8
This commit is contained in:
parent
a34e55e1a3
commit
af5ecb88b1
@ -21,7 +21,7 @@ password: Password
|
|||||||
nickservpassword: NickServ password for identification
|
nickservpassword: NickServ password for identification
|
||||||
channels: Channels for bot to idle in
|
channels: Channels for bot to idle in
|
||||||
transporttype: Set to 'ssl' to enable SSL
|
transporttype: Set to 'ssl' to enable SSL
|
||||||
encoding: Set to UTF8 to enable UTF8 encoding
|
encoding: Set to change encoding
|
||||||
|
|
||||||
* required
|
* required
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ class IrcManager extends ImManager {
|
|||||||
$port = empty($this->plugin->port) ? 6667 : $this->plugin->port;
|
$port = empty($this->plugin->port) ? 6667 : $this->plugin->port;
|
||||||
$password = empty($this->plugin->password) ? '' : $this->plugin->password;
|
$password = empty($this->plugin->password) ? '' : $this->plugin->password;
|
||||||
$transport = empty($this->plugin->transporttype) ? 'tcp' : $this->plugin->transporttype;
|
$transport = empty($this->plugin->transporttype) ? 'tcp' : $this->plugin->transporttype;
|
||||||
$encoding = empty($this->plugin->encoding) ? 'UTF8' : $this->plugin->encoding;
|
$encoding = empty($this->plugin->encoding) ? 'UTF-8' : $this->plugin->encoding;
|
||||||
$nickservpassword = empty($this->plugin->nickservpassword) ? '' : $this->plugin->nickservpassword;
|
$nickservpassword = empty($this->plugin->nickservpassword) ? '' : $this->plugin->nickservpassword;
|
||||||
$channels = empty($this->plugin->channels) ? array() : $this->plugin->channels;
|
$channels = empty($this->plugin->channels) ? array() : $this->plugin->channels;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user