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);