Extension sr_feuser_register
When displaying the forms, 'array' is displayed instead of the field label. To display the labels of the input fields again, changes are required in the file ext/sr_feuser_register/lib/class.tx_srfeuserregister_lang.php. In the getLL() function, the two lines with pi_getLL must be adapted:
function getLL ($key, $alt = '', $hsc = FALSE) {
// If the suffix is allowed and we have a localized string for the desired salutation, we'll take that.
$rc = '';
if (isset($this->conf['salutation']) && in_array($this->conf['salutation'], $this->allowedSuffixes, 1)) {
$expandedKey = $key.'_'.$this->conf['salutation'];
$usedLang = '';
$rc = $this->pibase->pi_getLL ($expandedKey);
}
if ($rc == '' || $rc == $alt || $usedLang != $this->pibase->LLkey) {
$rc = $this->pibase->pi_getLL ($key);
}
return $rc;
}
HMENU special = updated does not work
Due to changes in the TYPO3 core, it is currently not possible to output lists of the most recently updated pages.
This affects HMENU objects with the property
special = updated
and content elements of the type menu/sitemap with the menu type "Recently updated pages".
No labels for riders after update

After the TYPO3 update to version 4.6.x, the titles of the tabs are missing in the extension manager. What to do?
Delete the "typo3temp" folder on the shell, create a new folder and empty the cache_imagesizes table in phpmyadmin. Also delete the typo3conf/l10n folder.
Then reload the language files in TYPO3 in the extension manager and all labels are correctly labeled.