openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b3a34a002f670bba4359ea98eac6ee2ff3ff2ed1
parent bfc3c4a390be1018471fab70436466b702fdebbf
Author: Jan Dankert <devnull@localhost>
Date:   Wed,  9 Nov 2011 19:48:54 +0100

Fix: Methodennamen korrigiert.

Diffstat:
action/LoginAction.class.php | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/action/LoginAction.class.php b/action/LoginAction.class.php @@ -1549,7 +1549,7 @@ class LoginAction extends Action /** * Einen Kennwort-Anforderungscode an den Benutzer senden. */ - function passwordcode() + function passwordAction() { if ( !$this->hasRequestVar('username') ) { @@ -1588,6 +1588,7 @@ class LoginAction extends Action } $this->setSessionVar("password_commit_name",$user->name); + $this->nextView('passwordinputcode'); } @@ -1596,7 +1597,7 @@ class LoginAction extends Action * Anzeige Formular zum Eingeben des Kennwort-Codes. * */ - function passwordinputcode() + function passwordinputcodeView() { } @@ -1605,7 +1606,7 @@ class LoginAction extends Action /** * Neues Kennwort erzeugen und dem Benutzer zusenden. */ - function passwordcommit() + function passwordinputcodeAction() { $username = $this->getSessionVar("password_commit_name"); @@ -1613,7 +1614,6 @@ class LoginAction extends Action $this->getSessionVar("password_commit_code") != $this->getRequestVar("code") ) { $this->addValidationError('code','PASSWORDCODE_NOT_MATCH'); - $this->callSubAction('passwordinputcode'); return; }