Minor code style adjustments

This commit is contained in:
FrancescoUK
2017-04-17 21:47:22 +01:00
parent 66a4507525
commit 9d01398a4b
17 changed files with 41 additions and 46 deletions

View File

@@ -206,9 +206,9 @@ class Barcode_lib
{
$array = array();
if (($handle = opendir($folder)) !== false)
if (($handle = opendir($folder)) !== FALSE)
{
while (($file = readdir($handle)) !== false)
while (($file = readdir($handle)) !== FALSE)
{
if(substr($file, -4, 4) === '.ttf')
{
@@ -230,4 +230,4 @@ class Barcode_lib
}
}
?>
?>