fix dashboard hash autogenerate pandora_enterprise#13891

This commit is contained in:
daniel 2024-06-10 19:27:59 +02:00
parent f802c5be6d
commit c3fe6b16b7
3 changed files with 3 additions and 3 deletions

View File

@ -490,7 +490,7 @@ class NetworkMapWidget extends Widget
'zoom_dash' => $zoom_dash,
'id_user' => $config['id_user'],
'auth_class' => 'PandoraFMS\Dashboard\Manager',
'auth_hash' => Manager::generatePublicHash(),
'auth_hash' => get_parameter('auth_hash', ''),
'node' => $node,
'size' => $size,
]

View File

@ -669,7 +669,7 @@ class TreeViewWidget extends Widget
'page' => 'include/ajax/tree.ajax',
'id_user' => $config['id_user'],
'auth_class' => 'PandoraFMS\Dashboard\Manager',
'auth_hash' => Manager::generatePublicHash(),
'auth_hash' => get_parameter('auth_hash', ''),
'type' => $tab,
'cellId' => $id_cell,
'ajaxUrl' => ui_get_full_url('ajax.php', false, false, false),

View File

@ -347,7 +347,7 @@ class WuxStatsWidget extends Widget
'view_all_stats' => $view_all_stats,
'id_user' => $config['id_user'],
'auth_class' => 'PandoraFMS\Dashboard\Manager',
'auth_hash' => Manager::generatePublicHash(),
'auth_hash' => get_parameter('auth_hash', ''),
'cellId' => $this->cellId,
]
);