diff --git a/libraries/joomla/form/fields/repeatable.php b/libraries/joomla/form/fields/repeatable.php index 14e216a7f2ee6..f46f2c1ce86cf 100644 --- a/libraries/joomla/form/fields/repeatable.php +++ b/libraries/joomla/form/fields/repeatable.php @@ -64,12 +64,12 @@ protected function getInput() $field->name = (string) $field->element['name']; // Build heading - $head_row_str[] = '' . strip_tags($field->getLabel($field->name)); + $head_row_str[] = '' . strip_tags($field->label); $head_row_str[] = '
' . JText::_($field->description) . ''; $head_row_str[] = ''; // Build body - $body_row_str[] = '' . $field->getInput() . ''; + $body_row_str[] = '' . $field->input . ''; } // Append buttons