Commit c18119d179d9a4d0d8fa494a4f889eca432bae73
1 parent
9e8a436d
Take options and pass them on to KTEntityUtil::getList2()
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4740 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
lib/foldermanagement/Folder.inc
| ... | ... | @@ -299,8 +299,8 @@ class Folder extends KTEntity { |
| 299 | 299 | * |
| 300 | 300 | * @return Array array of Documents objects, false otherwise and set $_SESSION["errorMessage"] |
| 301 | 301 | */ |
| 302 | - function getList($sWhereClause = null) { | |
| 303 | - return KTEntityUtil::getList(Folder::_table(), 'Folder', $sWhereClause); | |
| 302 | + function getList($sWhereClause = null, $aOptions = null) { | |
| 303 | + return KTEntityUtil::getList2('Folder', $sWhereClause, $aOptions); | |
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | /** | ... | ... |