Coding standards

pull/5144/head
Michael 2018-05-29 19:00:26 +00:00
rodzic 5bcb9daa43
commit c86111d193
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -2811,9 +2811,9 @@ class DFRN
return; return;
} }
logger('deleting item '.$item["id"].' uri='.$uri, LOGGER_DEBUG); logger('deleting item '.$item['id'].' uri='.$uri, LOGGER_DEBUG);
Item::delete(['id' => $item["id"]]); Item::delete(['id' => $item['id']]);
} }
/** /**

Wyświetl plik

@ -2793,7 +2793,7 @@ class Diaspora
continue; continue;
} }
Item::delete(['id' => $item["id"]]); Item::delete(['id' => $item['id']]);
logger("Deleted target ".$target_guid." (".$item["id"].") from user ".$item["uid"]." parent: ".$item["parent"], LOGGER_DEBUG); logger("Deleted target ".$target_guid." (".$item["id"].") from user ".$item["uid"]." parent: ".$item["parent"], LOGGER_DEBUG);
} }