Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
type fix [Closes #105]
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jan 10, 2021
1 parent 67c5f8d commit 64bd2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/checker/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@
*/
function iniFlag($var)
{
$status = strtolower(ini_get($var));
$status = strtolower((string) ini_get($var));
return $status === 'on' || $status === 'true' || $status === 'yes' || (int) $status;
}

Expand Down

0 comments on commit 64bd2c6

Please sign in to comment.