diff options
author | Friendika <info@friendika.com> | 2010-12-02 15:04:47 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-02 15:04:47 -0800 |
commit | e818170c9fc4bf5c5cf11c83693e5d9a3f00260d (patch) | |
tree | 853ce8eef0c18d7f06cca1dacd5787f347eeae17 /view | |
parent | 42d66874bed88753cbcf08a060c89f789f41a3ae (diff) | |
download | volse-hubzilla-e818170c9fc4bf5c5cf11c83693e5d9a3f00260d.tar.gz volse-hubzilla-e818170c9fc4bf5c5cf11c83693e5d9a3f00260d.tar.bz2 volse-hubzilla-e818170c9fc4bf5c5cf11c83693e5d9a3f00260d.zip |
linkify the advanced profile
Diffstat (limited to 'view')
-rw-r--r-- | view/en/profile_advanced.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/en/profile_advanced.php b/view/en/profile_advanced.php index 1f917f663..5f2054807 100644 --- a/view/en/profile_advanced.php +++ b/view/en/profile_advanced.php @@ -78,10 +78,11 @@ EOT; } if($a->profile['homepage']) { + $homepage = linkify($a->profile['homepage']); $o .= <<< EOT <div id="advanced-profile-homepage-wrapper" > <div id="advanced-profile-homepage-text">Homepage:</div> -<div id="advanced-profile-homepage">{$a->profile['homepage']}</div> +<div id="advanced-profile-homepage">$homepage</div> </div> <div id="advanced-profile-homepage-end"></div> EOT; |