Fix class name XmlForm_Field_PopupOption
This commit is contained in:
David Callizaya
2017-08-11 18:01:58 -04:00
parent 07a850ddbf
commit b97745c549
4 changed files with 8 additions and 36 deletions

View File

@@ -369,7 +369,7 @@ class Publisher
default:
$label = ($oTable->fields[$f]['Label'] != '') ? $oTable->fields[$f]['Label'] : $f;
$label = str_replace( "\n", ' ', $label );
$pm->fields[$f] = new XmlForm_Field_popupOption( new Xml_Node( $f, 'complete', '', array ('label' => $label,'type' => 'popupOption','launch' => $oTable->id . '.showHideField("' . $f . '")' ) ) );
$pm->fields[$f] = new XmlForm_Field_PopupOption( new Xml_Node( $f, 'complete', '', array ('label' => $label,'type' => 'popupOption','launch' => $oTable->id . '.showHideField("' . $f . '")' ) ) );
$pm->values[$f] = '';
}
}

View File

@@ -5505,7 +5505,7 @@ class XmlForm
'listbox' => XmlForm_Field_Listbox::class,
'password' => XmlForm_Field_Password::class,
'percentage' => XmlForm_Field_Percentage::class,
'popupoption' => XmlForm_Field_popupOption::class,
'popupoption' => XmlForm_Field_PopupOption::class,
'print' => XmlForm_Field_Print::class,
'radiogroup' => XmlForm_Field_RadioGroup::class,
'radiogroupview' => XmlForm_Field_RadioGroupView::class,