This commit is contained in:
alejandro.campos@artica.es 2022-11-07 11:26:00 +01:00
parent dce2b3f915
commit 75fe9dd8d3
1 changed files with 10 additions and 0 deletions

View File

@ -774,6 +774,16 @@ class Manager implements PublicLogin
$dashboards = \db_get_all_rows_sql($sql_dashboard);
if ($favourite === true) {
$dashboards = array_map(
function ($dashboard) {
$dashboard['name'] = io_safe_input($dashboard['name']);
return $dashboard;
},
$dashboards
);
}
if ($dashboards === false) {
$dashboards = [];
}