[Web] Fix removal of alias domain

master
andre.peters 2017-12-17 17:44:28 +01:00
parent ae56c3b59e
commit f5a6667aad
1 changed files with 1 additions and 1 deletions

View File

@ -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) {