13144 - fix null variable used as an array in be2bill

This commit is contained in:
Rodney Figaro 2017-05-24 12:07:21 +02:00
parent 4754304b28
commit 8a95c6e742

View File

@ -31,6 +31,12 @@ class Be2billApi
return false;
}
// antadis fix 13144
if (!is_array($params_no_hash)) {
$params_no_hash = array();
}
// antadis end fix
#Alpha sort
ksort($parameters);