add an href for homepage link

This commit is contained in:
Evan Prodromou 2011-09-30 13:22:15 -04:00
parent e3c010a870
commit 1b94625f2f
1 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,10 @@ abstract class ProfileBlock extends Widget
$homepage = $this->homepage();
if (!empty($homepage)) {
$this->out->element('a', 'profile_block_homepage', $homepage);
$this->out->element('a',
array('href' => $homepage,
'class' => 'profile_block_homepage'),
$homepage);
}
}