// normally stored in mainpage, but older ones may be null
if (!empty($this->mainpage)) {
$url = $this->mainpage;
- } else {
+ } elseif ($this->isLocal()) {
$url = common_local_url('showgroup',
array('nickname' => $this->nickname));
}
if (Event::handle('StartUserGroupGetUri', array($this, &$uri))) {
if (!empty($this->uri)) {
$uri = $this->uri;
- } else {
+ } elseif ($this->isLocal()) {
$uri = common_local_url('groupbyid',
array('id' => $this->id));
}
{
$url = null;
if (Event::handle('StartUserGroupPermalink', array($this, &$url))) {
- $url = common_local_url('groupbyid',
- array('id' => $this->id));
+ if ($this->isLocal()) {
+ $url = common_local_url('groupbyid',
+ array('id' => $this->id));
+ }
}
Event::handle('EndUserGroupPermalink', array($this, &$url));
return $url;