X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=mod%2Fprofile_photo.php;h=e9008ab29ed419552671898db93140024a244070;hb=cde17704ddbbe2b4926824aa2aa7aec7a9ac2dd6;hp=48805fbdd3fa88fc1e342b22c8dc6affeb9ac758;hpb=f1db34eebcef28cb0748931153926374f6442be6;p=friendica.git diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 48805fbdd3..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 ); @@ -184,7 +189,11 @@ function profile_photo_content(&$a) { $tpl = load_view_file('view/profile_photo.tpl'); $o .= replace_macros($tpl,array( - '$user' => $a->user['nickname'] + '$user' => $a->user['nickname'], + '$lbl_upfile' => t('Upload File:'), + '$title' => t('Upload Profile Photo'), + '$submit' => t('Upload'), + '$select' => sprintf('%s %s', t('or'), ($newuser) ? '' . t('skip this step') . '' : '' . t('select a photo from your photo albums') . '') )); return $o;