diff --git a/include/identity.php b/include/identity.php
index 415e85f2f..f63b576b2 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -893,7 +893,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) {
|| (x($profile,'country_name') == 1))
$location = t('Location:');
- $profile['homepage'] = linkify($profile['homepage']);
+ $profile['homepage'] = linkify($profile['homepage'],true);
$gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
$marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
diff --git a/include/text.php b/include/text.php
index c93bc4e70..2a524f7f1 100644
--- a/include/text.php
+++ b/include/text.php
@@ -873,8 +873,8 @@ function valid_email($x){
*/
-function linkify($s) {
- $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\@\~\#\'\%\$\!\+]*)/", ' $1', $s);
+function linkify($s,$me = false) {
+ $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\@\~\#\'\%\$\!\+]*)/", (($me) ? ' $1' : ' $1'), $s);
$s = preg_replace("/\<(.*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$s);
return($s);
}
diff --git a/version.inc b/version.inc
index 2e906c260..2a61decf3 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-02-22.952
+2015-02-24.953