Remove and extra space.

This commit is contained in:
markjcrane 2015-08-13 11:29:33 -06:00
parent efa6cef940
commit b2c4ff8008
1 changed files with 1 additions and 1 deletions

View File

@ -630,7 +630,7 @@ function extension_exists($extension) {
$sql = "select * from v_extensions ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and (extension = '$extension' ";
$sql .= "or number_alias = '$extension') ";
$sql .= "or number_alias = '$extension') ";
$sql .= "and enabled = 'true' ";
$result = $db->query($sql)->fetchAll(PDO::FETCH_ASSOC);
if (count($result) > 0) {