Fixed the PHP warning
This commit is contained in:
parent
e6a31eb47c
commit
610f723d37
|
@ -92,9 +92,20 @@ if ($report_id_user == $config['id_user'] ||
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($enterpriseEnable) {
|
if ($enterpriseEnable) {
|
||||||
|
$non_interactive_check = false;
|
||||||
|
if (isset($non_interactive)) {
|
||||||
|
$non_interactive_check = $non_interactive;
|
||||||
|
}
|
||||||
|
|
||||||
$table->data['interactive_report'][0] = __('Non interactive report');
|
$table->data['interactive_report'][0] = __('Non interactive report');
|
||||||
$table->data['interactive_report'][1] =__('Yes').' '.html_print_radio_button ('non_interactive', 1, '', $non_interactive, true) .' ';
|
$table->data['interactive_report'][1] =__('Yes') .
|
||||||
$table->data['interactive_report'][1] .= __('No').' '.html_print_radio_button ('non_interactive', 0, '', $non_interactive, true);
|
' ' .
|
||||||
|
html_print_radio_button('non_interactive', 1, '',
|
||||||
|
$non_interactive_check, true) .' ';
|
||||||
|
$table->data['interactive_report'][1] .= __('No') .
|
||||||
|
' ' .
|
||||||
|
html_print_radio_button('non_interactive', 0, '',
|
||||||
|
$non_interactive_check, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->data['description'][0] = __('Description');
|
$table->data['description'][0] = __('Description');
|
||||||
|
|
Loading…
Reference in New Issue