diff options
author | Evan Prodromou <evan@status.net> | 2009-11-09 17:41:51 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-09 17:41:51 -0500 |
commit | 499b3555df2a3c27f56f2931b3add15192fef1fc (patch) | |
tree | e161bd93c89d6c2c434303363e8a8f758035572d | |
parent | a6312cb79cabad68d305ca9f4f2e5b3340f03f42 (diff) |
broadcast profile changes from updateavatarurl.php
-rw-r--r-- | scripts/updateavatarurl.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/updateavatarurl.php b/scripts/updateavatarurl.php index acafa74b0..dfcfc118c 100644 --- a/scripts/updateavatarurl.php +++ b/scripts/updateavatarurl.php @@ -69,6 +69,8 @@ try { function updateAvatars($user) { + $touched = false; + if (!have_option('q', 'quiet')) { print "Updating avatars for user '".$user->nickname."' (".$user->id.")..."; } @@ -108,11 +110,18 @@ function updateAvatars($user) if (!$avatar->query($sql)) { throw new Exception("Can't update avatar for user " . $user->nickname . "."); + } else { + $touched = true; } } } + } + if ($touched) { + $profile = $user->getProfile(); + common_broadcast_profile($profile); } + if (have_option('v', 'verbose')) { print "DONE.\n"; } |