diff options
author | friendica <info@friendica.com> | 2013-07-21 22:39:21 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-21 22:39:21 -0700 |
commit | 05612a8a7782e8da569e18dc41001235e2b514e6 (patch) | |
tree | 218eecc8e1c8346ed91b68f07cee7db13686861b /include/items.php | |
parent | 4680a818ead0c7af86f77f58a03bbafb553b6b0c (diff) | |
download | volse-hubzilla-05612a8a7782e8da569e18dc41001235e2b514e6.tar.gz volse-hubzilla-05612a8a7782e8da569e18dc41001235e2b514e6.tar.bz2 volse-hubzilla-05612a8a7782e8da569e18dc41001235e2b514e6.zip |
make zot_finger more bulletproof
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index eb58f9f0a..863fa419b 100755 --- a/include/items.php +++ b/include/items.php @@ -1437,7 +1437,7 @@ function item_store($arr,$force_parent = false) { intval($arr['uid']) ); - if(count($r)) { + if($r) { // is the new message multi-level threaded? // even though we don't support it now, preserve the info |