X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofile_photo.php;h=e9008ab29ed419552671898db93140024a244070;hb=cb6c1f91b7b2b30c3d9e9f4e6c97b0704361a1f3;hp=fe4da3bafa634dbbffd5ed94402299ac6edfd613;hpb=e35a5bac55e0e259c7c587adfaf546484b032c92;p=friendica.git diff --git a/mod/profile_photo.php b/mod/profile_photo.php index fe4da3bafa..e9008ab29e 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'), '' . t('select a photo from your photo albums') . '') + '$select' => sprintf('%s %s', t('or'), ($newuser) ? '' . t('skip this step') . '' : '' . t('select a photo from your photo albums') . '') )); return $o;