aboutsummaryrefslogtreecommitdiffstats
path: root/include/auth.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-03 06:12:34 -0700
committerFriendika <info@friendika.com>2011-06-03 06:12:34 -0700
commit00c548cc8f91b6087fa923da7b939a0fa2c264dc (patch)
tree4268a3e019e594272d74f3f2721ecbfef1054ec9 /include/auth.php
parenta27391c33a6b2d3828182ca5f8e8b65998cf47a7 (diff)
downloadvolse-hubzilla-00c548cc8f91b6087fa923da7b939a0fa2c264dc.tar.gz
volse-hubzilla-00c548cc8f91b6087fa923da7b939a0fa2c264dc.tar.bz2
volse-hubzilla-00c548cc8f91b6087fa923da7b939a0fa2c264dc.zip
new member page
Diffstat (limited to 'include/auth.php')
-rw-r--r--include/auth.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/auth.php b/include/auth.php
index fd80a63e2..d1eb9d131 100644
--- a/include/auth.php
+++ b/include/auth.php
@@ -63,6 +63,12 @@ if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-p
$_SESSION['theme'] = $a->user['theme'];
$_SESSION['page_flags'] = $a->user['page-flags'];
+ $member_since = strtotime($a->user['register_date']);
+ if(time() < ($member_since + ( 60 * 60 * 24 * 14)))
+ $_SESSION['new_member'] = true;
+ else
+ $_SESSION['new_member'] = false;
+
if(strlen($a->user['timezone'])) {
date_default_timezone_set($a->user['timezone']);
$a->timezone = $a->user['timezone'];
@@ -211,6 +217,13 @@ else {
else
info( t("Welcome back ") . $a->user['username'] . EOL);
+
+ $member_since = strtotime($a->user['register_date']);
+ if(time() < ($member_since + ( 60 * 60 * 24 * 14)))
+ $_SESSION['new_member'] = true;
+ else
+ $_SESSION['new_member'] = false;
+
if(strlen($a->user['timezone'])) {
date_default_timezone_set($a->user['timezone']);
$a->timezone = $a->user['timezone'];