diff --git a/libraries/joomla/form/fields/sql.php b/libraries/joomla/form/fields/sql.php index 11d913315dae1..c8bf84f27237c 100644 --- a/libraries/joomla/form/fields/sql.php +++ b/libraries/joomla/form/fields/sql.php @@ -174,7 +174,7 @@ public function setup(SimpleXMLElement $element, $value, $group = null) $this->keyField = (string) $this->element['key_field'] ?: 'value'; $this->valueField = (string) $this->element['value_field'] ?: (string) $this->element['name']; $this->translate = (string) $this->element['translate'] ?: false; - $this->header = (string) $this->element['header'] ?: false; + $this->header = \JText::_((string) $this->element['header']) ?: false; } return $return;