librenms/html/ajax_dash.php
Jellyfrog 77c531527c
Apply fixes from StyleCI (#12117)
* Apply fixes from StyleCI

* Disable style check
2020-09-21 14:54:51 +02:00

11 lines
241 B
PHP

<?php
header('Content-type: application/json');
// reload dashboard referencing old endpoint
exit(json_encode([
'html' => '<script>window.location.reload(false);</script>',
'status' => 'ok',
'title' => 'Reload Dasbhoard',
]));