mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 03:09:21 +02:00
fix undefinded chart_defaultfilter
This commit is contained in:
parent
a0cb2460a5
commit
dc688c5f92
@ -106,7 +106,7 @@ if ( isset($content['Charts']) )
|
||||
// ---
|
||||
|
||||
// --- Set Chart default Filterstring
|
||||
if ( strlen($myChart['chart_defaultfilter']) > 0 )
|
||||
if ( isset($myChart['chart_defaultfilter']) && strlen($myChart['chart_defaultfilter']) > 0 )
|
||||
$myChart['chart_defaultfilter_urldecoded'] = urlencode($myChart['chart_defaultfilter']);
|
||||
else
|
||||
$myChart['chart_defaultfilter_urldecoded'] = "";
|
||||
@ -159,4 +159,4 @@ $page -> output();
|
||||
//include($gl_root_path . 'include/functions_installhelpers.php');
|
||||
//ConvertCustomCharts();
|
||||
|
||||
?>
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user