Typo fixes

This commit is contained in:
2021-05-04 22:34:23 +02:00
parent 48d9265983
commit 28c404f4cd
4 changed files with 6 additions and 6 deletions

View File

@ -184,9 +184,9 @@ class ComponentbuilderViewCompiler extends JViewLegacy
$options = array();
$options[''] = 'COM_COMPONENTBUILDER__SELECT_COMPONENT_';
// load component options from array
foreach($this->Components as $componet)
foreach($this->Components as $component)
{
$options[(int) $componet->id] = $this->escape($componet->name);
$options[(int) $component->id] = $this->escape($component->name);
}
// add to form
$form[] = ComponentbuilderHelper::getFieldObject($attributes, '', $options);