Cast domain_enabled to text

This commit is contained in:
FusionPBX
2020-07-10 09:45:54 -06:00
committed by GitHub
parent 42a926684a
commit b4beae1e97

View File

@@ -528,7 +528,8 @@
//pre-populate the form (admin won't have domain_add permissions, but domain_uuid will already be set above)
if ((count($_GET) > 0 || (!permission_exists('domain_add') && $domain_uuid != '')) && $_POST["persistformvar"] != "true") {
$sql = "select * from v_domains ";
$sql = "select domain_uuid, domain_name, cast(domain_enabled as text), domain_description ";
$sql .= "from v_domains ";
$sql .= "where domain_uuid = :domain_uuid ";
$parameters['domain_uuid'] = $domain_uuid;
$database = new database;
@@ -698,4 +699,4 @@
//include the footer
require_once "resources/footer.php";
?>
?>