$this->element('link', array('rel' => 'EditURI',
'type' => 'application/rsd+xml',
'href' => $rsd));
+
+ if ($this->page != 1) {
+ $this->element('link', array('rel' => 'canonical',
+ 'href' => common_local_url('public')));
+ }
}
/**
$this->raw(common_markup_to_html($m));
$this->elementEnd('div');
}
+
+ function extraHead()
+ {
+ if ($this->page != 1) {
+ $this->element('link', array('rel' => 'canonical',
+ 'href' => $this->group->homeUrl()));
+ }
+ }
}
$this->element('link', array('rel' => 'EditURI',
'type' => 'application/rsd+xml',
'href' => $rsd));
+
+ if ($this->page != 1) {
+ $this->element('link', array('rel' => 'canonical',
+ 'href' => $this->profile->profileurl));
+ }
}
function showEmptyListMessage()