mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-10 19:12:42 +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.
|
* І have already taken care of.
|
||||||
* @param string $param3 sort list by this field
|
* @param string $param3 sort list by this field
|
||||||
* @param string $param4 order direction
|
* @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='') { /* {{{ */
|
function getDocumentList($listtype, $param1=null, $param2=false, $param3='', $param4='') { /* {{{ */
|
||||||
/* The following query will get all documents and lots of additional
|
/* The following query will get all documents and lots of additional
|
||||||
|
@ -1043,6 +1043,11 @@ class SeedDMS_Core_DMS {
|
||||||
if (is_bool($resArr) && !$resArr) {
|
if (is_bool($resArr) && !$resArr) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
$documents = array();
|
||||||
|
foreach($resArr as $row)
|
||||||
|
$documents[] = $this->getDocument($row["id"]);
|
||||||
|
*/
|
||||||
} else {
|
} else {
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user