diff options
author | Friendika <info@friendika.com> | 2010-11-11 02:49:28 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-11 02:49:28 -0800 |
commit | 7be66b1d91f80c3cee0ed6f08392c3f3f1bffc1e (patch) | |
tree | 9c813130c32d83c440e145e514bb4e08f6fae0e3 /include/auth.php | |
parent | 0abaa6724d6b2e7e3f5a3f8d81026cee9def0b10 (diff) | |
download | volse-hubzilla-7be66b1d91f80c3cee0ed6f08392c3f3f1bffc1e.tar.gz volse-hubzilla-7be66b1d91f80c3cee0ed6f08392c3f3f1bffc1e.tar.bz2 volse-hubzilla-7be66b1d91f80c3cee0ed6f08392c3f3f1bffc1e.zip |
ff account manager
Diffstat (limited to 'include/auth.php')
-rw-r--r-- | include/auth.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/auth.php b/include/auth.php index c0a747def..ccaa970de 100644 --- a/include/auth.php +++ b/include/auth.php @@ -49,6 +49,7 @@ if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-p $_SESSION['cid'] = $a->cid; } + header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"'); } } else { @@ -98,6 +99,8 @@ else { $a->cid = $r[0]['id']; $_SESSION['cid'] = $a->cid; } + + header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"'); if(($a->module !== 'home') && isset($_SESSION['return_url'])) goaway($a->get_baseurl() . '/' . $_SESSION['return_url']); } |