Upgrade code - step 1

This commit is contained in:
Fernando Ontiveros
2025-03-27 12:06:06 +00:00
parent fbd92c5964
commit 7f3ee186de
47635 changed files with 5941896 additions and 1779 deletions

View File

@@ -375,14 +375,14 @@ class DynaformEditorAjax extends DynaformEditor implements IDynaformEditorAjax
self::_setTmpData($tmp);
} else {
$form = new Form($file, PATH_DYNAFORM, SYS_LANG, true);
$Properties = $tmp['Properties'];
if (!isset($Properties['ENABLETEMPLATE'])) {
$Properties['ENABLETEMPLATE'] = "0";
$properties = $tmp['Properties'];
if (!isset($properties['ENABLETEMPLATE'])) {
$properties['ENABLETEMPLATE'] = "0";
}
$Properties['WIDTH'] = $form->width;
$Properties['MODE'] = $form->mode;
$properties['WIDTH'] = $form->width;
$properties['MODE'] = $form->mode;
}
return $Properties;
return $properties;
}
/**