aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profiles.php
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2015-01-13 17:54:40 +0100
committerStefan Parviainen <saparvia@caterva.eu>2015-01-13 17:54:40 +0100
commit93735df2c78b249d5735834c190dc91bad336172 (patch)
treede5bbcfd93ed668f80c059485d2dc4e7480b743d /mod/profiles.php
parentadc9564b5cc5f1fc410220514285927052cdfe4a (diff)
downloadvolse-hubzilla-93735df2c78b249d5735834c190dc91bad336172.tar.gz
volse-hubzilla-93735df2c78b249d5735834c190dc91bad336172.tar.bz2
volse-hubzilla-93735df2c78b249d5735834c190dc91bad336172.zip
Allow tags in mail, many profile fields, and admin info
Diffstat (limited to 'mod/profiles.php')
-rw-r--r--mod/profiles.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/mod/profiles.php b/mod/profiles.php
index fa6a6e35c..11cd86645 100644
--- a/mod/profiles.php
+++ b/mod/profiles.php
@@ -296,6 +296,22 @@ function profiles_post(&$a) {
$work = fix_mce_lf(escape_tags(trim($_POST['work'])));
$education = fix_mce_lf(escape_tags(trim($_POST['education'])));
+ require_once('include/text.php');
+ linkify_tags($a, $likes, local_user());
+ linkify_tags($a, $dislikes, local_user());
+ linkify_tags($a, $about, local_user());
+ linkify_tags($a, $interest, local_user());
+ linkify_tags($a, $interest, local_user());
+ linkify_tags($a, $contact, local_user());
+ linkify_tags($a, $channels, local_user());
+ linkify_tags($a, $music, local_user());
+ linkify_tags($a, $book, local_user());
+ linkify_tags($a, $tv, local_user());
+ linkify_tags($a, $film, local_user());
+ linkify_tags($a, $romance, local_user());
+ linkify_tags($a, $work, local_user());
+ linkify_tags($a, $education, local_user());
+
$hide_friends = (($_POST['hide_friends'] == 1) ? 1: 0);
$with = ((x($_POST,'with')) ? escape_tags(trim($_POST['with'])) : '');