mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-31 05:57:34 +00:00
minor documentation fix
This commit is contained in:
parent
3ddd24c7cd
commit
106f849e82
|
@ -734,7 +734,7 @@ class SeedDMS_Core_DMS {
|
|||
* І have already taken care of.
|
||||
* @param string $param3 sort list by this field
|
||||
* @param string $param4 order direction
|
||||
* @return array list of documents
|
||||
* @return array list of documents records
|
||||
*/
|
||||
function getDocumentList($listtype, $param1=null, $param2=false, $param3='', $param4='') { /* {{{ */
|
||||
/* The following query will get all documents and lots of additional
|
||||
|
@ -1043,6 +1043,11 @@ class SeedDMS_Core_DMS {
|
|||
if (is_bool($resArr) && !$resArr) {
|
||||
return false;
|
||||
}
|
||||
/*
|
||||
$documents = array();
|
||||
foreach($resArr as $row)
|
||||
$documents[] = $this->getDocument($row["id"]);
|
||||
*/
|
||||
} else {
|
||||
return array();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user