fix Определение пути к модулю

This commit is contained in:
origami11@yandex.ru 2022-12-15 15:50:40 +03:00
parent 73112f5bf0
commit ab13ebd289
2 changed files with 15 additions and 12 deletions

View file

@ -167,7 +167,7 @@ class Form extends View {
{
foreach ($schema as $key => $conv) {
list($value, $type) = $conv;
$this->field [$key]->setValue(call_user_func(array('Primitive', 'from_' . $type), $data->$value));
$this->field [$key]->setValue(call_user_func(array('ctiso\\Primitive', 'from_' . $type), $data->$value));
}
}