fix strings to int

This commit is contained in:
Dennis 2021-10-26 19:24:08 +02:00 committed by GitHub
parent a2e4798b3d
commit 72165b0d95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,9 +43,9 @@ class HomeController extends Controller
}
// DEFINE WETHER DAYS OR HOURS REMAIN
if ($days < "1")
if ($days < 1)
{
if ($hours < "1")
if ($hours < 1)
{
$boxText = 'You ran out of Credits ';
}