BUG-15172 The folders in the tree are not sorted alphabetically SOLVED

- The parameter sort was not set.
- the parameter setting in file appFolderAjax.php
This commit is contained in:
Marco Antonio Nina
2014-06-10 16:50:46 -04:00
parent 535fcedd60
commit 83de02017b

View File

@@ -180,7 +180,9 @@ function expandNode()
$folderListObj = $oPMFolder->getFolderList(
($_POST["node"] != "root")? (($_POST["node"] == "NA")? "" : $_POST["node"]) : $rootFolder,
$limit,
$start
$start,
'ASC',
'name'
);
$folderList=$folderListObj['folders'];