DFRN: Deletions should work now as well
This commit is contained in:
parent
69457a4a5b
commit
4e513d3885
|
@ -521,8 +521,8 @@ class dfrn2 {
|
||||||
$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
|
$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
|
||||||
intval($importer["uid"]), dbesc($item["uri"]));
|
intval($importer["uid"]), dbesc($item["uri"]));
|
||||||
if ($r) {
|
if ($r) {
|
||||||
//logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
|
logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
|
||||||
//return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Is it a reply?
|
// Is it a reply?
|
||||||
|
@ -694,7 +694,7 @@ class dfrn2 {
|
||||||
else
|
else
|
||||||
$when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
|
$when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
|
||||||
|
|
||||||
if (!$uri OR !$contact)
|
if (!$uri OR !$contact_id)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id`
|
$r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id`
|
||||||
|
|
Loading…
Reference in a new issue