]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile_photo.php
rolling version number in preparation for release
[friendica.git] / mod / profile_photo.php
index 48805fbdd3fa88fc1e342b22c8dc6affeb9ac758..e9008ab29ed419552671898db93140024a244070 100644 (file)
@@ -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) ? '<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;