aboutsummaryrefslogtreecommitdiffstats
path: root/mod/manage.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-01-12 19:18:01 -0800
committerfriendica <info@friendica.com>2012-01-12 19:18:01 -0800
commita95000d9f58ca1e355540da46fb2bcbad9f81c97 (patch)
tree0da8292979dc68ba6d580fadfc2e5e9cd73ceaa8 /mod/manage.php
parentdf14d7abc472b49c8cb503dde789c9658ab73366 (diff)
downloadvolse-hubzilla-a95000d9f58ca1e355540da46fb2bcbad9f81c97.tar.gz
volse-hubzilla-a95000d9f58ca1e355540da46fb2bcbad9f81c97.tar.bz2
volse-hubzilla-a95000d9f58ca1e355540da46fb2bcbad9f81c97.zip
manage also needs the new authenticate_success function
Diffstat (limited to 'mod/manage.php')
-rw-r--r--mod/manage.php37
1 files changed, 3 insertions, 34 deletions
diff --git a/mod/manage.php b/mod/manage.php
index 2705cc932..41ec81129 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -26,43 +26,12 @@ function manage_post(&$a) {
unset($_SESSION['cid']);
unset($_SESSION['theme']);
unset($_SESSION['page_flags']);
+ unset($_SESSION['return_url']);
- $_SESSION['uid'] = $r[0]['uid'];
- $_SESSION['theme'] = $r[0]['theme'];
- $_SESSION['authenticated'] = 1;
- $_SESSION['page_flags'] = $r[0]['page-flags'];
- $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
+ require_once('include/security.php');
+ authenticate_success($r[0],true,true);
- info( sprintf( t("Welcome back %s") , $r[0]['username']) . EOL);
- $a->user = $r[0];
-
- if(strlen($a->user['timezone'])) {
- date_default_timezone_set($a->user['timezone']);
- $a->timezone = $a->user['timezone'];
- }
-
- $r = q("SELECT `uid`,`username` FROM `user` WHERE `password` = '%s' AND `email` = '%s'",
- dbesc($a->user['password']),
- dbesc($a->user['email'])
- );
- if(count($r))
- $a->identities = $r;
-
- $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
- intval($_SESSION['uid']));
- if(count($r)) {
- $a->contact = $r[0];
- $a->cid = $r[0]['id'];
- $_SESSION['cid'] = $a->cid;
- }
-
- q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d LIMIT 1",
- dbesc(datetime_convert()),
- intval($_SESSION['uid'])
- );
-
- header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"');
goaway($a->get_baseurl() . '/profile/' . $a->user['nickname']);
// NOTREACHED
}