Index: t3lib/class.t3lib_install.php =================================================================== --- t3lib/class.t3lib_install.php (revision 6296) +++ t3lib/class.t3lib_install.php (working copy) @@ -1023,9 +1023,11 @@ * * @param string Should be a string read from an SQL-file made with 'mysqldump [database_name] -d' * @return array Array with information about table. - * @deprecated since TYPO3 4.2 Use ->getFieldDefinitions_fileContent() instead! + * @deprecated since TYPO3 4.2, this function will be removed in TYPO3 4.4, use ->getFieldDefinitions_fileContent() instead! */ function getFieldDefinitions_sqlContent($fileContent) { + t3lib_div::logDeprecatedFunction(); + return $this->getFieldDefinitions_fileContent($fileContent); } }