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

Commit 5986667

Browse files
committed
type fix [Closes #105]
1 parent aea4f85 commit 5986667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/checker/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
*/
274274
function iniFlag($var)
275275
{
276-
$status = strtolower(ini_get($var));
276+
$status = strtolower((string) ini_get($var));
277277
return $status === 'on' || $status === 'true' || $status === 'yes' || (int) $status;
278278
}
279279

0 commit comments

Comments
 (0)