+2010-06-02 Christian Kuhn <lolli@schwarzbu.ch>
+
+ * Fixed bug #13506: Function changePassword does not work, when hitting 'enter' in change password form (Thanks to Christian Futterlieb)
+
2010-05-31 Oliver Hader <oliver@typo3.org>
* Release of TYPO3 4.4.0beta3
// all is fine, continue with new password
$postData = t3lib_div::_POST($this->prefixId);
- if ($postData['changepasswordsubmit']) {
+ if (isset($postData['changepasswordsubmit'])) {
if (strlen($postData['password1']) < $minLength) {
$markerArray['###STATUS_MESSAGE###'] = sprintf($this->getDisplayText('change_password_tooshort_message', $this->conf['changePasswordMessage_stdWrap.']), $minLength);
} elseif ($postData['password1'] != $postData['password2']) {