Commit 719fd67c authored by Franco Fichtner's avatar Franco Fichtner

crash reporter: another 'lagg' access fix

parent f0d41594
......@@ -35,8 +35,9 @@ require_once("unbound.inc");
$referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/interfaces_lagg.php');
if (!is_array($config['laggs']['lagg']))
if (!isset($config['laggs']['lagg'])) {
$config['laggs']['lagg'] = array();
}
$a_laggs = &$config['laggs']['lagg'];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment