From ca9315b895c209ad248f0a76d9840c1aa1ee8249 Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Mon, 31 Aug 2020 20:41:03 +0200 Subject: [PATCH] Tab->Space --- include/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/functions.php b/include/functions.php index 8f76a90..a81e369 100644 --- a/include/functions.php +++ b/include/functions.php @@ -175,8 +175,8 @@ function getConfigItem($section, $key, $configs) { while(($sectionpos < $len) && (startsWith($configs[$sectionpos],$key."=") === false) ) { if (startsWith($configs[$sectionpos],"[")) { return null; - } - $sectionpos++; + } + $sectionpos++; } if ($sectionpos < $len) { return substr($configs[$sectionpos], strlen($key) + 1);