diff --git a/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_REALM.php b/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_REALM.php index 571af53..ece4d92 100644 --- a/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_REALM.php +++ b/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_REALM.php @@ -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)); } } \ No newline at end of file diff --git a/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD.php b/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD.php index f1c22fd..b13e7b4 100644 --- a/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD.php +++ b/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD.php @@ -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)); } } \ No newline at end of file diff --git a/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD_TEST.php b/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD_TEST.php index 81b1db4..4490dad 100644 --- a/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD_TEST.php +++ b/mojotrollz/cron/log/SERVER_ONLINE_CLASSIC_WORLD_TEST.php @@ -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)); } } \ No newline at end of file diff --git a/mojotrollz/cron/log/SERVER_ONLINE_TBC_REALM.php b/mojotrollz/cron/log/SERVER_ONLINE_TBC_REALM.php index 32208f9..0095946 100644 --- a/mojotrollz/cron/log/SERVER_ONLINE_TBC_REALM.php +++ b/mojotrollz/cron/log/SERVER_ONLINE_TBC_REALM.php @@ -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)); } } \ No newline at end of file diff --git a/mojotrollz/cron/log/SERVER_ONLINE_TBC_WORLD_TEST.php b/mojotrollz/cron/log/SERVER_ONLINE_TBC_WORLD_TEST.php index 613e33a..4ba0420 100644 --- a/mojotrollz/cron/log/SERVER_ONLINE_TBC_WORLD_TEST.php +++ b/mojotrollz/cron/log/SERVER_ONLINE_TBC_WORLD_TEST.php @@ -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)); } } \ No newline at end of file