slawkens1
2017-05-04 17:36:08 +02:00
parent ef9d5127a2
commit 636a54c70d
4 changed files with 19 additions and 12 deletions

View File

@@ -176,7 +176,7 @@ class OTS_GuildRank extends OTS_Row_DAO implements IteratorAggregate, Countable
{
if( !isset($this->data['guild_id']) )
{
throw new E_OTS_NotLoaded();
return new OTS_Guild();
}
$guild = new OTS_Guild();

View File

@@ -75,7 +75,10 @@ class OTS_ServerInfo
fwrite($socket, $packet);
// reads respond
$data = stream_get_contents($socket);
//$data = stream_get_contents($socket);
$data = '';
while (!feof($socket))
$data .= fgets($socket, 1024);
// closing connection to current server
fclose($socket);
@@ -121,7 +124,9 @@ class OTS_ServerInfo
{
// loads respond XML
$info = new OTS_InfoRespond();
$info->loadXML( $status->getBuffer() );
if(!$info->loadXML( $status->getBuffer()))
return false;
return $info;
}