aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-09 22:08:25 -0700
committerfriendica <info@friendica.com>2012-07-09 22:08:25 -0700
commit4b066e04f619c2c6f8d383daee9ceab49f39acdc (patch)
treec9f3376ffce342333b60d848430ee13b3329d903 /mod/profile.php
parent8855cb9c286eb66ad96b3388d85ccc57434a6db3 (diff)
downloadvolse-hubzilla-4b066e04f619c2c6f8d383daee9ceab49f39acdc.tar.gz
volse-hubzilla-4b066e04f619c2c6f8d383daee9ceab49f39acdc.tar.bz2
volse-hubzilla-4b066e04f619c2c6f8d383daee9ceab49f39acdc.zip
making tags work
Diffstat (limited to 'mod/profile.php')
-rw-r--r--mod/profile.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/mod/profile.php b/mod/profile.php
index 24e03d6ea..b53639c35 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -279,8 +279,20 @@ function profile_content(&$a, $update = 0) {
intval($a->profile['profile_uid']),
dbesc($parents_str)
);
-
- $items = conv_sort($items,'created');
+
+ $tag_finder = array();
+ if(count($items))
+ foreach($items as $item)
+ if(! in_array($item['item_id'],$tag_finder))
+ $tag_finder[] = $item['item_id'];
+ $tag_finder_str = implode(', ', $tag_finder);
+ $tags = q("select * from term where oid in ( '%s' ) and otype = %d",
+ dbesc($tag_finder),
+ intval(TERM_OBJ_POST)
+ );
+
+ $items = conv_sort($items,$tags,'created');
+
} else {
$items = array();
}