Browse Source

quill should send an array when editing

pull/82/head
Aaron Parecki 7 years ago
parent
commit
b83b4cc885
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      controllers/controllers.php

+ 1
- 1
controllers/controllers.php View File

@ -412,7 +412,7 @@ function edit_favorite(&$user, $post_url, $like_of) {
'action' => 'update', 'action' => 'update',
'url' => $post_url, 'url' => $post_url,
'replace' => [ 'replace' => [
'like-of' => $like_of
'like-of' => [$like_of]
] ]
]; ];
$r = micropub_post_for_user($user, $micropub_request, null, true); $r = micropub_post_for_user($user, $micropub_request, null, true);

Loading…
Cancel
Save