Fixed public dashboard permissions

This commit is contained in:
fermin831 2017-10-31 19:48:56 +01:00
parent cd508098cb
commit 92c7eb59f5
2 changed files with 8 additions and 3 deletions

View File

@ -15,7 +15,10 @@
// Login check
global $config;
check_login ();
// Public dashboards have not user. Try to get from URL
if (!isset($config['id_user'])) {
$config['id_user'] = get_parameter('id_user');
}
// Fix: IW was the old ACL to check for report editing, now is RW
if (! check_acl ($config['id_user'], 0, "VR")) {

View File

@ -13,8 +13,10 @@
// Load global variables
global $config;
// Check user credentials
check_login();
// Public dashboards have not user. Try to get from URL
if (!isset($config['id_user'])) {
$config['id_user'] = get_parameter('id_user');
}
require_once ('include/functions_pandora_networkmap.php');
enterprise_include_once('include/functions_policies.php');