aboutsummaryrefslogtreecommitdiffstats
path: root/include/auth.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-23 17:31:23 -0700
committerFriendika <info@friendika.com>2011-04-23 17:31:23 -0700
commita0e7d8fa00cadf00184d606135bb5c07d670b748 (patch)
treeb7a581d81087001e062902bd743702d303089320 /include/auth.php
parentb6036418075da2f5137ba68c426fbb4fe5f5f0b3 (diff)
downloadvolse-hubzilla-a0e7d8fa00cadf00184d606135bb5c07d670b748.tar.gz
volse-hubzilla-a0e7d8fa00cadf00184d606135bb5c07d670b748.tar.bz2
volse-hubzilla-a0e7d8fa00cadf00184d606135bb5c07d670b748.zip
redirect to profile photo upload on very first login
Diffstat (limited to 'include/auth.php')
-rw-r--r--include/auth.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/auth.php b/include/auth.php
index e8cee3918..4c7e85d86 100644
--- a/include/auth.php
+++ b/include/auth.php
@@ -191,9 +191,17 @@ else {
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $record['nickname'];
$_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
- notice( t("Welcome back ") . $record['username'] . EOL);
$a->user = $record;
+ if($a->user['login_date'] === '0000-00-00 00:00:00') {
+ $_SESSION['return_url'] = 'profile_photo/new';
+ $a->module = 'profile_photo';
+ notice( t("Welcome ") . $a->user['username'] . EOL);
+ notice( t('Please upload a profile photo.') . EOL);
+ }
+ else
+ notice( t("Welcome back ") . $a->user['username'] . EOL);
+
if(strlen($a->user['timezone'])) {
date_default_timezone_set($a->user['timezone']);
$a->timezone = $a->user['timezone'];
@@ -214,6 +222,8 @@ else {
$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'])