mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
getDocumentCategories() returns categories sorted by name (Bug #181)
This commit is contained in:
parent
60570344f0
commit
0eb9da705d
|
@ -1446,7 +1446,7 @@ class SeedDMS_Core_DMS {
|
|||
} /* }}} */
|
||||
|
||||
function getDocumentCategories() { /* {{{ */
|
||||
$queryStr = "SELECT * FROM tblCategory";
|
||||
$queryStr = "SELECT * FROM tblCategory order by name";
|
||||
|
||||
$resArr = $this->db->getResultArray($queryStr);
|
||||
if (is_bool($resArr) && !$resArr)
|
||||
|
|
Loading…
Reference in New Issue
Block a user