Update functions.php
This commit is contained in:
parent
157274df45
commit
4b02cb3ffe
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ function getDMRId ($mmdvmconfigs) {
|
||||||
|
|
||||||
function getConfigItem($section, $key, $configs) {
|
function getConfigItem($section, $key, $configs) {
|
||||||
// retrieves the corresponding config-entry within a [section]
|
// retrieves the corresponding config-entry within a [section]
|
||||||
$sectionpos = arraye_search("[" . $section . "]", $configs);
|
$sectionpos = array_search("[" . $section . "]", $configs);
|
||||||
if ($sectionpos !== FALSE) {
|
if ($sectionpos !== FALSE) {
|
||||||
$sectionpos++;
|
$sectionpos++;
|
||||||
$len = count($configs);
|
$len = count($configs);
|
||||||
|
|
Loading…
Reference in a new issue