Fix the is_uuid reference

This commit is contained in:
FusionPBX 2021-09-04 22:41:27 -06:00 committed by GitHub
parent 11fd9ed86b
commit 4c1dbbef9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -210,7 +210,7 @@ if (!class_exists('sofia_global_settings')) {
//get checked records
foreach($records as $record) {
if ($record['checked'] == 'true' && is_uuid(sofia_global_setting_uuid')) {
if ($record['checked'] == 'true' && is_uuid($record['sofia_global_setting_uuid'])) {
$uuids[] = "'".$record['sofia_global_setting_uuid']."'";
}
}
@ -258,4 +258,4 @@ if (!class_exists('sofia_global_settings')) {
}
}
?>
?>