aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile_photo.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 /mod/profile_photo.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 'mod/profile_photo.php')
-rw-r--r--mod/profile_photo.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php
index fe4da3baf..e9008ab29 100644
--- a/mod/profile_photo.php
+++ b/mod/profile_photo.php
@@ -134,6 +134,11 @@ function profile_photo_content(&$a) {
return;
}
+ $newuser = false;
+
+ if($a->argc == 2 && $a->argv[1] === 'new')
+ $newuser = true;
+
if( $a->argv[1]=='use'){
if ($a->argc<3){
notice( t('Permission denied.') . EOL );
@@ -188,7 +193,7 @@ function profile_photo_content(&$a) {
'$lbl_upfile' => t('Upload File:'),
'$title' => t('Upload Profile Photo'),
'$submit' => t('Upload'),
- '$select' => sprintf('%s %s', t('or'), '<a href="'. $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>')
+ '$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . $a->get_baseurl() . '">' . t('skip this step') . '</a>' : '<a href="'. $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>')
));
return $o;