Fix array declaration 5.3 compatible

This commit is contained in:
Alan Gregory
2016-08-15 18:07:36 -03:00
parent 772d7fa28d
commit 00c5c65d47

View File

@ -9,7 +9,7 @@ if (!empty($agent_data['app'][$name])) {
}
#Format Data
$lines = explode("\n",$rawdata);
$unbound = [];
$unbound = array();
foreach ($lines as $line) {
list($var,$value) = explode('=',$line);
$unbound[$var] = $value;