link for website

darcs-hash:20080612174453-84dde-035da48b74c9148d6dbdd4650c713f434419e9e6.gz
This commit is contained in:
Evan Prodromou 2008-06-12 13:44:53 -04:00
parent 2354faf7ac
commit aaf0786bef
1 changed files with 4 additions and 1 deletions

View File

@ -146,7 +146,10 @@ class ShowstreamAction extends StreamAction {
common_element('p', 'description', htmlspecialchars($profile->bio));
}
if ($profile->homepage) {
common_element('p', 'website', $profile->homepage);
common_element_start('p', 'website');
common_element('a', array('href' => $profile->homepage),
$profile->homepage);
common_element_end('p');
}
$this->show_statistics($profile);