X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fupdateurls.php;h=35b835e4944ac435ac24cf6dd43d5090efaa4932;hb=6f62adedfc44306e1df2a63e030f8b29e334f3a2;hp=01b3c2283bdbe371ca37b6d4d5aa049d1af60578;hpb=f79aec36feaa4760201a7e88d5b31513a3c458ba;p=quix0rs-gnu-social.git diff --git a/scripts/updateurls.php b/scripts/updateurls.php old mode 100644 new mode 100755 index 01b3c2283b..35b835e494 --- a/scripts/updateurls.php +++ b/scripts/updateurls.php @@ -52,13 +52,8 @@ function updateUserUrls() updateProfileUrl($profile); updateAvatarUrls($profile); - - // Broadcast for remote users - - common_broadcast_profile($profile); - } catch (Exception $e) { - printv("Error updating URLs: " . $e->getMessage()); + echo "Error updating URLs: " . $e->getMessage(); } printfv("DONE."); } @@ -112,7 +107,7 @@ function updateGroupUrls() while ($group->fetch()) { try { printfv("Updating group {$group->nickname}..."); - $orig = User_group::staticGet('id', $group->id); + $orig = User_group::getKV('id', $group->id); if (!empty($group->original_logo)) { $group->original_logo = Avatar::url(basename($group->original_logo)); $group->homepage_logo = Avatar::url(basename($group->homepage_logo)); @@ -129,7 +124,7 @@ function updateGroupUrls() $group->update($orig); printfv("DONE."); } catch (Exception $e) { - printv("Can't update avatars for group " . $group->nickname . ": ". $e->getMessage()); + echo "Can't update avatars for group " . $group->nickname . ": ". $e->getMessage(); } } }