diff --git a/core/install/resources/classes/install_fusionpbx.php b/core/install/resources/classes/install_fusionpbx.php index 2007e103b8..abe9333ec2 100644 --- a/core/install/resources/classes/install_fusionpbx.php +++ b/core/install/resources/classes/install_fusionpbx.php @@ -902,6 +902,7 @@ include "root.php"; //get the switch default settings $sql = "select * from v_default_settings "; $sql .= "where default_setting_category = 'switch' "; + $sql .= "and default_setting_enabled = 'true' "; $prep_statement = $this->dbh->prepare($sql); $prep_statement->execute(); $default_settings = $prep_statement->fetchAll(PDO::FETCH_NAMED);