]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
OStatus/scripts/update-profile-data.php: print updated fullnames
authorJoshua Judson Rosen <rozzin@geekspace.com>
Tue, 9 Dec 2014 03:06:29 +0000 (22:06 -0500)
committerJoshua Judson Rosen <rozzin@geekspace.com>
Tue, 9 Dec 2014 03:06:29 +0000 (22:06 -0500)
Now that we can actually update them again.

plugins/OStatus/scripts/update-profile-data.php

index 116061a7c3bc626183a4a74d163da67bc558af5d..e024ed95a780f3b09b8771f0d7360671b7303320 100644 (file)
@@ -26,7 +26,8 @@ $helptext = <<<END_OF_HELP
 update-profile-data.php [options] [http://example.com/profile/url]
 
 Rerun profile discovery for the given OStatus remote profile, and save the
-updated profile data (nickname, avatar, bio, etc). Doesn't touch feed state.
+updated profile data (nickname, fullname, avatar, bio, etc).
+Doesn't touch feed state.
 Can be used to clean up after breakages.
 
 Options:
@@ -44,7 +45,7 @@ function showProfileInfo(Ostatus_profile $oprofile) {
     } else {
         $profile = $oprofile->localProfile();
         try {
-            foreach (array('nickname', 'bio', 'homepage', 'location') as $field) {
+            foreach (array('nickname', 'fullname', 'bio', 'homepage', 'location') as $field) {
                 print "  $field: {$profile->$field}\n";
             }
         } catch (NoProfileException $e) {