[Web] Fix alias table - fixes #1467

This commit is contained in:
André
2018-06-08 10:26:19 +02:00
parent e13c519ecb
commit 43a6e24b81
2 changed files with 2 additions and 2 deletions

View File

@@ -2800,7 +2800,7 @@ function mailbox($_action, $_type, $_data = null, $attr = null) {
return false;
}
try {
$stmt = $pdo->prepare("SELECT REPLACE(`address`, ',', ' ') AS `address` FROM `alias` WHERE `address` != `goto` AND `domain` = :domain");
$stmt = $pdo->prepare("SELECT `address` FROM `alias` WHERE `address` != `goto` AND `domain` = :domain");
$stmt->execute(array(
':domain' => $_data,
));