diff options
author | friendica <info@friendica.com> | 2012-07-10 06:28:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-10 06:28:02 -0700 |
commit | 94fabe3a2942ca93b436694f180f8eb2a72df918 (patch) | |
tree | 37333905f9d0b0c3a3d0fdf4366d4720cee9e680 /mod/profile.php | |
parent | 1215de575d9cda66b434f21dafdf44f986638b71 (diff) | |
download | volse-hubzilla-94fabe3a2942ca93b436694f180f8eb2a72df918.tar.gz volse-hubzilla-94fabe3a2942ca93b436694f180f8eb2a72df918.tar.bz2 volse-hubzilla-94fabe3a2942ca93b436694f180f8eb2a72df918.zip |
upstream fixes and a lot of taxonomy stuff
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index b53639c35..b48e035af 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -287,7 +287,7 @@ function profile_content(&$a, $update = 0) { $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), + dbesc($tag_finder_str), intval(TERM_OBJ_POST) ); |