mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 09:03:49 +00:00
Put the mssql table names in ascending order.
This commit is contained in:
@@ -236,7 +236,7 @@ include "root.php";
|
||||
$sql = "show tables";
|
||||
}
|
||||
if ($this->type == "mssql") {
|
||||
$sql = "SELECT * FROM sys.Tables";
|
||||
$sql = "SELECT * FROM sys.Tables order by name asc";
|
||||
}
|
||||
$prep_statement = $this->db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
|
||||
Reference in New Issue
Block a user