mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-11 23:13:05 -05:00
NodeAction: json_decode() $param#2 expects bool
This commit is contained in:
parent
f960d09cc2
commit
ad3cb81dc9
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ abstract class NodeAction
|
|||
*/
|
||||
public static function unSerialize($string)
|
||||
{
|
||||
$object = json_decode($string, JSON_FORCE_OBJECT);
|
||||
$object = json_decode($string, true);
|
||||
$action = self::create($object['actionName'], $object['nodeName']);
|
||||
|
||||
foreach ($object['properties'] as $key => $val) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue