Merge pull request #764 from marcoAntonioNina/BUG-9917

BUG 9917 No se actualiza el paginado en el file manager despué.. SOLVED
This commit is contained in:
julceslauhub
2012-10-17 08:38:50 -07:00
2 changed files with 5 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ function expandNode()
global $RBAC;
$user = ($RBAC->userCanAccess('PM_ALLCASES') == 1)? '' : $_SESSION['USER_LOGGED'];
$folderContentObj = $oPMFolder->getFolderContent ($_POST ['node'] != 'root' ?
$_POST ['node'] == 'NA' ? "" : $_POST ['node'] : $rootFolder, array(), null, null, $limit, $start, $user);
$_POST ['node'] == 'NA' ? "" : $_POST ['node'] : $rootFolder, array(), null, null, $limit, $start, $user, true);
$folderContent=$folderContentObj['documents'];
$totalDocuments=$folderContentObj['totalDocumentsCount'];
$totalItems+=count($folderContent);