Fix module enabled

This commit is contained in:
FusionPBX
2025-10-30 18:16:56 -06:00
committed by GitHub
parent 11eb62a50d
commit 6c6443d993

View File

@@ -882,7 +882,7 @@
if ($prev_module_cat != $row['module_category']) {
$xml .= "\n <!-- ".$row['module_category']." -->\n";
}
if ($row['module_enabled'] == true){
if ($row['module_enabled']){
$xml .= " <load module=\"".$row['module_name']."\"/>\n";
}
$prev_module_cat = $row['module_category'];