aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-12-17 18:16:46 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-12-17 18:16:46 -0800
commit1b9722c65ac2169cadcf78376aaaf9d82721c9cd (patch)
tree63f02227d902842be89dc29387f01c8fbf2769df /include/items.php
parent62a60e554235c66c88955d16134c874ad560bf72 (diff)
downloadvolse-hubzilla-1b9722c65ac2169cadcf78376aaaf9d82721c9cd.tar.gz
volse-hubzilla-1b9722c65ac2169cadcf78376aaaf9d82721c9cd.tar.bz2
volse-hubzilla-1b9722c65ac2169cadcf78376aaaf9d82721c9cd.zip
loop detection
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php
index 7343f7165..44f9633a9 100755
--- a/include/items.php
+++ b/include/items.php
@@ -3335,7 +3335,6 @@ function start_delivery_chain($channel, $item, $item_id, $parent) {
if((! $private) && $new_public_policy)
$private = 1;
-
$item_wall = 1;
$item_origin = 1;
$item_uplink = 0;
@@ -3386,8 +3385,13 @@ function start_delivery_chain($channel, $item, $item_id, $parent) {
if($r)
proc_run('php','include/notifier.php','tgroup',$item_id);
- else
+ else {
logger('start_delivery_chain: failed to update item');
+ // reset the source xchan to prevent loops
+ $r = q("update item set source_xchan = '' where id = %d",
+ intval($item_id)
+ );
+ }
}
/**