diff options
author | friendica <info@friendica.com> | 2015-03-21 16:46:28 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-21 16:46:28 -0700 |
commit | a2e3ca6fd8ba8c0630de089d772fdd668b84428b (patch) | |
tree | 66396776eb293108450c98f2ec1047cafda0fcb5 /include/text.php | |
parent | 85dd08427c6067554762854c584eae0ca90fea43 (diff) | |
download | volse-hubzilla-a2e3ca6fd8ba8c0630de089d772fdd668b84428b.tar.gz volse-hubzilla-a2e3ca6fd8ba8c0630de089d772fdd668b84428b.tar.bz2 volse-hubzilla-a2e3ca6fd8ba8c0630de089d772fdd668b84428b.zip |
add loadtime search to channel and fix it for home. display and search need further investigation
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index 54d8b2ad7..86da3ee42 100644 --- a/include/text.php +++ b/include/text.php @@ -2370,8 +2370,7 @@ function linkify_tags($a, &$body, $uid) { if($fullnametagged) continue; - // @FIXME which $profile_uid? It's not set anywhere. - $success = handle_tag($a, $body, $access_tag, $str_tags, ($uid) ? $uid : $profile_uid , $tag); + $success = handle_tag($a, $body, $access_tag, $str_tags, ($uid) ? $uid : $a->profile_uid , $tag); $results[] = array('success' => $success, 'access_tag' => $access_tag); if($success['replaced']) $tagged[] = $tag; } |