X-Git-Url: http://git.pk910.de/?p=ZNCAdmin.git;a=blobdiff_plain;f=zncadmin%2FZNCServer.class.php;fp=zncadmin%2FZNCServer.class.php;h=92e9c3f4da6dd15ee0eb6f08c43d419f765fe5d5;hp=8af0194188fc6687affcae0c52db3a3c274382e0;hb=a002a07957fe9d65ba856662aa95a5ab4b2697ae;hpb=a50b62d9dd4457251c9110e3a1f0dba1b0d68601 diff --git a/zncadmin/ZNCServer.class.php b/zncadmin/ZNCServer.class.php index 8af0194..92e9c3f 100644 --- a/zncadmin/ZNCServer.class.php +++ b/zncadmin/ZNCServer.class.php @@ -45,7 +45,7 @@ class ZNCServer { public function ZNCServer($host, $port, $version = null) { $this->host = $host; $this->port = $port; - if(is_empty(self::$zncserver_classes)) + if(empty(self::$zncserver_classes)) self::load_classes(); if($version !== null) { $this->loadServerObject($version); @@ -82,7 +82,7 @@ class ZNCServer { $logged_in = !preg_match("/errorbar/i", $http); /* Version detection */ - if(preg_match("ZNC ([0-9]+\.[0-9]+)", $http, $version_match)) + if(preg_match("#ZNC ([0-9]+\.[0-9]+)#", $http, $version_match)) $this->loadServerObject($version_match[1], $connector); return $logged_in;