Sort voicemail boxes in ascending order.

This commit is contained in:
Mark Crane 2015-01-29 07:18:29 +00:00
parent 384afc98fa
commit 8a895958e8
1 changed files with 1 additions and 0 deletions

View File

@ -96,6 +96,7 @@
$sql .= "and voicemail_uuid = '' ";
}
}
$sql .= "order by voicemail_id asc ";
$prep_statement = $this->db->prepare(check_sql($sql));
$prep_statement->execute();
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);