Set the disabled flag so its not permanently pending when disabling domains

This commit is contained in:
Guillaume Est Une Palourde 2020-07-22 11:49:51 -04:00 committed by Camille Lafitte
parent 36563f7298
commit a675041874
1 changed files with 3 additions and 0 deletions

View File

@ -1986,6 +1986,9 @@ class m_dom {
// is it a delete (DISABLED or DELETE)
if ($subdom["web_action"]=="DELETE" || strtoupper(substr($subdom["enable"],0,7))=="DISABLE") {
$ret = $hooks->invoke("hook_updatedomains_web_del",array($subdom["id"]));
if (strtoupper(substr($subdom["enable"],0,7))=="DISABLE") {
$db->query("UPDATE sub_domaines SET enable=\"DISABLED\" WHERE id=?;",array($id));
}
} else {
$hooks->invoke("hook_updatedomains_web_before",array($subdom["id"])); // give a chance to get SSL cert before ;)
$ret = $hooks->invoke("hook_updatedomains_web_add",array($subdom["id"]));