From: Friendika Date: Wed, 5 Oct 2011 05:03:57 +0000 (-0700) Subject: document backward compat issue X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=inline;h=6c521017f5e58432d0eaadb90d0745fe7c4f1472;p=friendica.git document backward compat issue --- diff --git a/include/notifier.php b/include/notifier.php index ccac5106f5..c3f7f33ea1 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -361,6 +361,10 @@ function notifier_run($argv, $argc){ continue; if($normal_mode) { + + // we only need the current item, but include the parent because without it + // older sites without a corresponding dfrn_notify change may do the wrong thing. + if($item_id == $item['id'] || $item['id'] == $item['parent']) $atom .= atom_entry($item,'text',$contact,$owner,true); }