#11805 hide "-1" on message

This commit is contained in:
Jonathan 2023-08-03 13:00:33 +02:00
parent 52038585f2
commit 1807c1f84c
1 changed files with 4 additions and 0 deletions

View File

@ -1289,6 +1289,10 @@ switch ($action) {
$task_table .= '</div></div>'; $task_table .= '</div></div>';
echo $task_table; echo $task_table;
} else { } else {
if ($report_task_data === -1) {
$report_task_data = '';
}
ui_print_info_message($report_task_data.__('To schedule a report, do it from the editing view of each report.')); ui_print_info_message($report_task_data.__('To schedule a report, do it from the editing view of each report.'));
} }