Fixed public dashboard permissions
This commit is contained in:
parent
cd508098cb
commit
92c7eb59f5
|
@ -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")) {
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue