aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-07-15 18:31:37 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-07-15 18:31:37 -0700
commit7db515b77cc17be545358ac1aba9b6b21c460507 (patch)
treedae5fd25abe612d84a0e3f89e8c9640377e05bfb /include/zot.php
parent59b67d52e60d51faa39cdad1921a64e8f64ea0ae (diff)
downloadvolse-hubzilla-7db515b77cc17be545358ac1aba9b6b21c460507.tar.gz
volse-hubzilla-7db515b77cc17be545358ac1aba9b6b21c460507.tar.bz2
volse-hubzilla-7db515b77cc17be545358ac1aba9b6b21c460507.zip
fix for empty recip array resulting from a mangled xchan
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/zot.php b/include/zot.php
index 4f80dc518..95de349fe 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -1114,11 +1114,14 @@ function zot_import($arr, $sender_url) {
$recip_arr[] = make_xchan_hash($recip['guid'],$recip['guid_sig']);
}
}
- stringify_array_elms($recip_arr);
- $recips = implode(',',$recip_arr);
- $r = q("select channel_hash as hash from channel where channel_hash in ( " . $recips . " ) and not ( channel_pageflags & %d ) > 0 ",
- intval(PAGE_REMOVED)
- );
+ $r = false;
+ if($recip_arr) {
+ stringify_array_elms($recip_arr);
+ $recips = implode(',',$recip_arr);
+ $r = q("select channel_hash as hash from channel where channel_hash in ( " . $recips . " ) and not ( channel_pageflags & %d ) > 0 ",
+ intval(PAGE_REMOVED)
+ );
+ }
if(! $r) {
logger('recips: no recipients on this site');
continue;