array_unshift($links, _m('FAVELIST', 'You'));
} else {
$profile = Profile::getKV('id', $id);
- if ($profile) {
- $links[] = sprintf('<a href="%s">%s</a>',
- htmlspecialchars($profile->profileurl),
+ if ($profile instanceof Profile) {
+ $links[] = sprintf('<a class="h-card" href="%s">%s</a>',
+ htmlspecialchars($profile->getUrl()),
htmlspecialchars($profile->getBestName()));
}
}
{
function showStart()
{
- $this->out->elementStart('div', array('class' => 'e-content notice-faves'));
+ $this->out->elementStart('div', array('class' => 'notice-faves'));
}
function showEnd()
{
function showStart()
{
- $this->out->elementStart('div', array('class' => 'e-content notice-repeats'));
+ $this->out->elementStart('div', array('class' => 'notice-repeats'));
}
function showEnd()
margin-left: 32px;
}
-#content .notice .threaded-replies .notice div.e-content.notice-faves {
+.threaded-replies .notice-repeats,
+.threaded-replies .notice-faves {
clear: both;
+ font-size: 0.88em;
}
.threaded-replies li {