[Web] Fix removal of alias domain
parent
ae56c3b59e
commit
f5a6667aad
|
@ -3492,7 +3492,7 @@ function mailbox($_action, $_type, $_data = null, $attr = null) {
|
||||||
));
|
));
|
||||||
$stmt = $pdo->prepare("DELETE FROM `bcc_maps` WHERE `local_dest` = :alias_domain");
|
$stmt = $pdo->prepare("DELETE FROM `bcc_maps` WHERE `local_dest` = :alias_domain");
|
||||||
$stmt->execute(array(
|
$stmt->execute(array(
|
||||||
':domain' => $alias_domain,
|
':alias_domain' => $alias_domain,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
catch (PDOException $e) {
|
catch (PDOException $e) {
|
||||||
|
|
Loading…
Reference in New Issue