diff options
author | Terrox <terrox@borganism.com> | 2019-09-03 14:32:52 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-09-03 14:32:52 +0200 |
commit | 93ec01e0a1fcf7a5574d8bf6ac044331b5b94724 (patch) | |
tree | 1435d48d662790b3137032215b7db1bac9abaf72 /include/channel.php | |
parent | df842a8e8d6eab8bf752e3453402dcdd45e1c773 (diff) | |
download | volse-hubzilla-93ec01e0a1fcf7a5574d8bf6ac044331b5b94724.tar.gz volse-hubzilla-93ec01e0a1fcf7a5574d8bf6ac044331b5b94724.tar.bz2 volse-hubzilla-93ec01e0a1fcf7a5574d8bf6ac044331b5b94724.zip |
More nofollow tags to discourage backlink farmers
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/channel.php b/include/channel.php index 7c0397e11..5d583e4f1 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1718,9 +1718,9 @@ function advanced_profile() { if(App::$profile['sexual']) $profile['sexual'] = array( t('Sexual Preference:'), App::$profile['sexual'] ); - if(App::$profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify(App::$profile['homepage']) ); + if(App::$profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify(App::$profile['homepage'], true) ); - if(App::$profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify(App::$profile['hometown']) ); + if(App::$profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify(App::$profile['hometown'], true) ); if(App::$profile['politic']) $profile['politic'] = array( t('Political Views:'), App::$profile['politic']); |