summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/showstream.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index e411f7724..ceedc7f31 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -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);