fix for non-well formated integer error(?)
This commit is contained in:
parent
5d82de75dd
commit
9979ee123d
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user