diff options
author | friendica <info@friendica.com> | 2012-10-07 18:44:06 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-07 18:44:06 -0700 |
commit | a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a (patch) | |
tree | 181d3e58294b5bd9c62307bd0a5b2447b3f3c625 /mod/profile.php | |
parent | c612253627019c146b8a49d6f927b475cac8be2f (diff) | |
download | volse-hubzilla-a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a.tar.gz volse-hubzilla-a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a.tar.bz2 volse-hubzilla-a56c0425e6f80e77a1e52b13cd5a14cb6e838b9a.zip |
start fixing all the item queries
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 68dc6db72..2724771a7 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -221,7 +221,7 @@ function profile_content(&$a, $update = 0) { } - if(count($r)) { + if($r && count($r)) { $parents_str = ids_to_querystr($r,'item_id'); |