Skip to content
Snippets Groups Projects
Commit 6b784f2e authored by Sergio's avatar Sergio
Browse files

avoid delete domain if in use as alias or vhost

parent 587fe4ed
No related branches found
No related tags found
Loading
......@@ -80,7 +80,7 @@ class page_action extends tform_actions {
$app->error($wb['error_domain_in mailuse']);
}
$sql = "SELECT domain_id FROM web_domain WHERE domain = '" . $app->db->quote($domain) . "'";
$sql = "SELECT domain_id FROM web_domain WHERE domain = '" . $app->db->quote($domain) . "' AND type IN ('alias', 'vhost')";
$res = $app->db->queryOneRecord($sql);
if (is_array($res)){
$app->error($wb['error_domain_in webuse']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment