fix for non-well formated integer error(?)

This commit is contained in:
Ulf Gebhardt 2016-12-14 19:23:00 +01:00
parent 5d82de75dd
commit 9979ee123d
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
namespace LOG;
class SERVER_ONLINE_CLASSIC_REALM extends \SYSTEM\LOG\INFO {
public function __construct($count){
parent::__construct('WoW Classic Realm Status: '.$count, $count);
parent::__construct('WoW Classic Realm Status: '.$count, \intval($count));
}
}

View File

@ -2,7 +2,7 @@
namespace LOG;
class SERVER_ONLINE_CLASSIC_WORLD extends \SYSTEM\LOG\INFO {
public function __construct($count){
parent::__construct('WoW Classic World Status: '.$count, $count);
parent::__construct('WoW Classic World Status: '.$count, \intval($count));
}
}

View File

@ -2,7 +2,7 @@
namespace LOG;
class SERVER_ONLINE_CLASSIC_WORLD_TEST extends \SYSTEM\LOG\INFO {
public function __construct($count){
parent::__construct('WoW Classic Test World Status: '.$count, $count);
parent::__construct('WoW Classic Test World Status: '.$count, \intval($count));
}
}

View File

@ -2,7 +2,7 @@
namespace LOG;
class SERVER_ONLINE_TBC_REALM extends \SYSTEM\LOG\INFO {
public function __construct($count){
parent::__construct('WoW TBC Realm Status: '.$count, $count);
parent::__construct('WoW TBC Realm Status: '.$count, \intval($count));
}
}

View File

@ -2,7 +2,7 @@
namespace LOG;
class SERVER_ONLINE_TBC_WORLD_TEST extends \SYSTEM\LOG\INFO {
public function __construct($count){
parent::__construct('WoW TBC Test World Status: '.$count, $count);
parent::__construct('WoW TBC Test World Status: '.$count, \intval($count));
}
}