You must have enabled TYPO3 backend debug, that way you will see the field name right after field label. You can disable from LocalConfiguration.php or from TYPO3 backend it self.
From LocalConfiguration.php: Just open LocalConfiguration.php located in typo3conf. Find [BE]['debug'] => 'true' and switch it back to [BE]['debug'] => 'false'
From TYPO3 backend:
Go to settings module under Admin Tool.
Find Configuration Presets and click on Choose Preset
You will find Debug settings there, click on it and switch to Live
Basically, both done the same thing. TYPO3 will disable debug mode and only critical warnings and errors will be displayed.
Well,
It's not a Bug, It's Feature!!
You must have enabled TYPO3 backend debug, that way you will see the field name right after field label. You can disable from
LocalConfiguration.phpor from TYPO3 backend it self.From
LocalConfiguration.php: Just openLocalConfiguration.phplocated intypo3conf. Find[BE]['debug'] => 'true'and switch it back to[BE]['debug'] => 'false'From TYPO3 backend:
settingsmodule underAdmin Tool.Configuration Presetsand click onChoose PresetDebug settingsthere, click on it and switch toLiveBasically, both done the same thing. TYPO3 will disable debug mode and only critical warnings and errors will be displayed.
That's it!