Sort voicemail boxes in ascending order.
This commit is contained in:
parent
384afc98fa
commit
8a895958e8
|
|
@ -96,6 +96,7 @@
|
||||||
$sql .= "and voicemail_uuid = '' ";
|
$sql .= "and voicemail_uuid = '' ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$sql .= "order by voicemail_id asc ";
|
||||||
$prep_statement = $this->db->prepare(check_sql($sql));
|
$prep_statement = $this->db->prepare(check_sql($sql));
|
||||||
$prep_statement->execute();
|
$prep_statement->execute();
|
||||||
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue