From 4b02cb3ffe15679028a321779a89af8636f492ac Mon Sep 17 00:00:00 2001 From: Kim - DG9VH Date: Mon, 31 Aug 2020 21:03:00 +0200 Subject: [PATCH] Update functions.php --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions.php b/include/functions.php index a81e369..2263608 100644 --- a/include/functions.php +++ b/include/functions.php @@ -168,7 +168,7 @@ function getDMRId ($mmdvmconfigs) { function getConfigItem($section, $key, $configs) { // retrieves the corresponding config-entry within a [section] - $sectionpos = arraye_search("[" . $section . "]", $configs); + $sectionpos = array_search("[" . $section . "]", $configs); if ($sectionpos !== FALSE) { $sectionpos++; $len = count($configs);