summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-12 13:44:53 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-12 13:44:53 -0400
commitaaf0786bef3515ed8d61c18b001372e2e0ddff6a (patch)
tree33592fd15217aeaa4d13db3b6cb30f22af096def
parent2354faf7ac87f191b7d4906e40e82172199accb9 (diff)
link for website
darcs-hash:20080612174453-84dde-035da48b74c9148d6dbdd4650c713f434419e9e6.gz
-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);