#8053 Fixed refresh in public dashboard

This commit is contained in:
Daniel Maya 2021-10-06 11:56:19 +02:00
parent 35c877ad79
commit 59c1a10056

View File

@ -29,8 +29,6 @@
// Button for display full screen mode. // Button for display full screen mode.
global $config; global $config;
$queryFull = [ $queryFull = [
'dashboardId' => $dashboardId, 'dashboardId' => $dashboardId,
'refr' => $refr, 'refr' => $refr,
@ -141,10 +139,11 @@ $publiclink['text'] .= html_print_image(
); );
$publiclink['text'] .= '</a>'; $publiclink['text'] .= '</a>';
// Check if it is a public dashboard.
$public_dashboard_hash = get_parameter('hash', false);
// Refresh selector time dashboards. // Refresh selector time dashboards.
if (isset($config['public_dashboard']) === true if ($public_dashboard_hash !== false) {
&& (bool) $config['public_dashboard'] === true
) {
$urlRefresh = $publicUrl; $urlRefresh = $publicUrl;
} else { } else {
$queryRefresh = [ $queryRefresh = [