Removed "insert" parameter
This commit is contained in:
@@ -2584,7 +2584,7 @@ class DFRN
|
||||
// Turn this into a wall post.
|
||||
$notify = Item::isRemoteSelf($importer, $item);
|
||||
|
||||
$posted_id = Item::insert($item, false, $notify);
|
||||
$posted_id = Item::insert($item, $notify);
|
||||
|
||||
if ($notify) {
|
||||
$posted_id = $notify;
|
||||
|
||||
@@ -511,7 +511,7 @@ class Feed {
|
||||
$notify = PRIORITY_MEDIUM;
|
||||
}
|
||||
|
||||
$id = Item::insert($item, false, $notify);
|
||||
$id = Item::insert($item, $notify);
|
||||
|
||||
Logger::info("Feed for contact " . $contact["url"] . " stored under id " . $id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user