+2009-06-06 Benjamin Mack <benni@typo3.org>
+
+ * Followup to #11016: Implement RSA authentication for BE and FE (Added deprecation warnings to unused functions in the login screen)
+
2009-06-05 Patrick Broens <patrick@patrickbroens.nl>
* Fixed bug #11189: Validation issue: value of attribute "method" cannot be "POST"; must be one of "get", "post"
// Add login form:
$this->content.=$this->wrapLoginForm($loginForm);
- // Add hidden fields and end the page
- $this->content .= $this->getHiddenFields();
-
$this->content.= $TBE_TEMPLATE->endPage();
}
*
* @param string $unused Unused
* @return string HTML output
+ * @deprecated since TYPO3 4.3, all the functionality was put in $this->startForm() and $this->addFields_hidden
*/
function getHiddenFields($unused = '') {
+ t3lib_div::logDeprecatedFunction();
return '';
}