aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-10-05 11:40:50 +0200
committerMario Vavti <mario@mariovavti.com>2018-10-05 11:40:50 +0200
commit69659e9bd55f11e63fc93a8e6c5d5deea1489931 (patch)
treebad7d3580c54940d62e7555ec2a1f74c89cb9629 /include
parent6c066f6107c6a2978de34a4f1b383191a92ecdba (diff)
parentd33c331abd3ae500fc7cdac206ea647c4c71905e (diff)
downloadvolse-hubzilla-69659e9bd55f11e63fc93a8e6c5d5deea1489931.tar.gz
volse-hubzilla-69659e9bd55f11e63fc93a8e6c5d5deea1489931.tar.bz2
volse-hubzilla-69659e9bd55f11e63fc93a8e6c5d5deea1489931.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include')
-rw-r--r--include/channel.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/channel.php b/include/channel.php
index 33e438e53..6a934cb82 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -2533,6 +2533,12 @@ function channel_remove($channel_id, $local = true, $unset_session = false) {
if(! $local) {
+ if(intval($r[0]['channel_removed'])) {
+ // already removed. do not propagate deletion of a channel which
+ // may have been removed locally at some previous time.
+ return;
+ }
+
$r = q("update channel set channel_deleted = '%s', channel_removed = 1 where channel_id = %d",
dbesc(datetime_convert()),
intval($channel_id)