mirror of
https://github.com/friendica/friendica
synced 2025-04-25 07:10:11 +00:00
Fix batch action query + Fix Namespace import
This commit is contained in:
parent
5fd4402074
commit
d54e56c659
3 changed files with 3 additions and 3 deletions
|
@ -134,7 +134,7 @@ class Contact extends BaseModule
|
|||
|
||||
$contacts_id = $_POST['contact_batch'];
|
||||
|
||||
$stmt = DBA::select('contact', ['id'], ['id' => $contacts_id, 'id' => local_user(), 'self' => false]);
|
||||
$stmt = DBA::select('contact', ['id'], ['id' => $contacts_id, 'uid' => local_user(), 'self' => false]);
|
||||
$orig_records = DBA::toArray($stmt);
|
||||
|
||||
$count_actions = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue