aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2014-12-07 16:17:45 +0100
committerStefan Parviainen <saparvia@caterva.eu>2014-12-07 16:19:22 +0100
commit62dabecf97611925d4d47f62c9968eafb56ae64b (patch)
tree39031fba8e0275fbf48ddf83cddde8dc55fdf9df /include/identity.php
parent3855be49104b6c874a1c91c7db134e642d3fda20 (diff)
downloadvolse-hubzilla-62dabecf97611925d4d47f62c9968eafb56ae64b.tar.gz
volse-hubzilla-62dabecf97611925d4d47f62c9968eafb56ae64b.tar.bz2
volse-hubzilla-62dabecf97611925d4d47f62c9968eafb56ae64b.zip
Show tags in other channels profile field to make it easier to navigate to the channels
Diffstat (limited to 'include/identity.php')
-rw-r--r--include/identity.php17
1 files changed, 14 insertions, 3 deletions
diff --git a/include/identity.php b/include/identity.php
index 11da745da..7ae8e48f6 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -1113,7 +1113,7 @@ logger('online: ' . $profile['online']);
function advanced_profile(&$a) {
-
+ require_once('include/text.php');
if(! perm_is_allowed($a->profile['profile_uid'],get_observer_hash(),'view_profile'))
return '';
@@ -1205,7 +1205,18 @@ function advanced_profile(&$a) {
if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
- if($txt = prepare_text($a->profile['channels'])) $profile['channels'] = array( t('My other channels:'), $txt);
+ // Support tags in the other channels field (probably want to restrict it to channels only?)
+ $txt = $a->profile['channels'];
+ $matches = get_tags($txt);
+ $access_tag = '';
+ $str_tags = '';
+ foreach($matches as $m) {
+ $success = handle_tag($a, $txt, $access_tag, $str_tags, $a->profile_uid, $m); // Use uid of the profile maker
+ }
+
+ if($txt = prepare_text($txt)) {
+ $profile['channels'] = array( t('My other channels:'), $txt);
+ }
if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt);
@@ -1580,4 +1591,4 @@ function get_channel_default_perms($uid) {
if($r)
return $r[0]['abook_my_perms'];
return 0;
-} \ No newline at end of file
+}