Merge branch 'ent-2112-Error-ACLs-en-los-Graph-Container' into 'develop'

[Graph container] Display only the containers group can see (ACL)

See merge request artica/pandorafms!1426
This commit is contained in:
vgilc 2018-04-17 16:19:58 +02:00
commit 51df9802f7
1 changed files with 7 additions and 1 deletions

View File

@ -20,7 +20,13 @@
*/
require_once ('include/functions_graph.php');
function folder_get_folders(){
$folders = io_safe_output(db_get_all_rows_in_table ('tcontainer','parent, name'));
$folders = io_safe_output(db_get_all_rows_filter (
'tcontainer',
array (
'id_group' => array_keys(users_get_groups()),
'order' => 'parent, name'
)
));
$ordered_folders = array();
foreach ($folders as $folder) {