diff options
author | friendica <info@friendica.com> | 2012-07-10 19:28:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-10 19:28:02 -0700 |
commit | e7957e14489ce8eb3b69ebede928dfe441a4924d (patch) | |
tree | e25fde990e36171053364c71471d9b90fd5633ef /mod/profile.php | |
parent | 94fabe3a2942ca93b436694f180f8eb2a72df918 (diff) | |
download | volse-hubzilla-e7957e14489ce8eb3b69ebede928dfe441a4924d.tar.gz volse-hubzilla-e7957e14489ce8eb3b69ebede928dfe441a4924d.tar.bz2 volse-hubzilla-e7957e14489ce8eb3b69ebede928dfe441a4924d.zip |
create fetch_tags function, make search work again, change logo
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index b48e035af..c9406c464 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -291,7 +291,8 @@ function profile_content(&$a, $update = 0) { intval(TERM_OBJ_POST) ); - $items = conv_sort($items,$tags,'created'); + $items = fetch_post_tags($items); + $items = conv_sort($items,'created'); } else { $items = array(); |