Fix regression in OStatus remote group subscribe -- a bug was previously masked silently (call to nonexistent getProfileUrl() method on User_group -- now replaced with homeUrl() which does the thing we wanted here)

This commit is contained in:
Brion Vibber 2010-06-29 10:31:30 -04:00
parent 2d920e05d5
commit 21f253c584

View File

@ -104,7 +104,7 @@ class OStatusGroupAction extends OStatusSubAction
} }
$this->showEntity($group, $this->showEntity($group,
$group->getProfileUrl(), $group->homeUrl(),
$group->homepage_logo, $group->homepage_logo,
$group->description); $group->description);
return $ok; return $ok;