diff --git a/views/bootstrap/class.Tasks.php b/views/bootstrap/class.Tasks.php index fc489b9a0..db4682b34 100644 --- a/views/bootstrap/class.Tasks.php +++ b/views/bootstrap/class.Tasks.php @@ -56,7 +56,7 @@ class SeedDMS_View_Tasks extends SeedDMS_Bootstrap_Style { if($workflowmode == 'traditional' || $workflowmode == 'traditional_only_approval') if(!$tasksinmenu || in_array('approval', $tasksinmenu)) { $tasks['approval'] = array(); - $resArr = $dms->getDocumentList('ApproveByMe', $user); + $resArr = $dms->getDocumentList('ApproveByMe', $user, false, '', '', false); if($resArr) { $docs = array(); foreach ($resArr as $res) { @@ -74,7 +74,7 @@ class SeedDMS_View_Tasks extends SeedDMS_Bootstrap_Style { if($workflowmode == 'traditional') if(!$tasksinmenu || in_array('review', $tasksinmenu)) { $tasks['review'] = array(); - $resArr = $dms->getDocumentList('ReviewByMe', $user); + $resArr = $dms->getDocumentList('ReviewByMe', $user, false, '', '', false); if($resArr) { $docs = array(); foreach ($resArr as $res) {