I found the wrong code, is in the file src/ajax.php line 889 :
if ($field == ‘service’) {
$app[] = $workers[$arr[‘service’]];
continue;
}
Should be:
if ($field == ‘service’) {
$app[] = $services[$arr[‘service’]];
continue;
}
-
This reply was modified 8 years, 3 months ago by mangaraym.
-
This reply was modified 8 years, 3 months ago by mangaraym.