From: Evan Prodromou <evan@prodromou.name>
Date: Thu, 12 Jun 2008 17:44:53 +0000 (-0400)
Subject: link for website
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aaf0786bef3515ed8d61c18b001372e2e0ddff6a;p=quix0rs-gnu-social.git

link for website

darcs-hash:20080612174453-84dde-035da48b74c9148d6dbdd4650c713f434419e9e6.gz
---

diff --git a/actions/showstream.php b/actions/showstream.php
index e411f77246..ceedc7f311 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);