summaryrefslogtreecommitdiff
path: root/actions/login.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-12-05 21:03:27 -0500
committerCraig Andrews <candrews@integralblue.com>2009-12-05 21:05:33 -0500
commit75cac0fd6b94f77ec8ff32ebc89ec513ee102831 (patch)
treeb84a71e22ee7d0437895cf8676730b42eb0c02ff /actions/login.php
parentcb2966a64c618a90b84c7aac63e5193c054be3aa (diff)
Added 'login' command that gives you a link that can be used to login to the website
Diffstat (limited to 'actions/login.php')
-rw-r--r--actions/login.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/actions/login.php b/actions/login.php
index cd1326813..cee29fd09 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -79,6 +79,8 @@ class LoginAction extends Action
$this->clientError(_('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$this->checkLogin();
+ } else if (isset($args['user_id']) && isset($args['token'])){
+ $this->checkLogin($args['user_id'],$args['token']);
} else {
common_ensure_session();
$this->showForm();
@@ -95,7 +97,7 @@ class LoginAction extends Action
* @return void
*/
- function checkLogin()
+ function checkLogin($user_id=null, $token=null)
{
if(isset($token) && isset($user_id)){
//Token based login (from the LoginCommand)
@@ -137,11 +139,6 @@ class LoginAction extends Action
$user = common_check_user($nickname, $password);
}
- $nickname = common_canonical_nickname($this->trimmed('nickname'));
- $password = $this->arg('password');
-
- $user = common_check_user($nickname, $password);
-
if (!$user) {
$this->showForm(_('Incorrect username or password.'));
return;