From b83b4cc885b30c8644233858017b8bac69ef2082 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Tue, 28 Feb 2017 09:33:22 -0800 Subject: [PATCH] quill should send an array when editing --- controllers/controllers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/controllers.php b/controllers/controllers.php index 2491081..a754806 100644 --- a/controllers/controllers.php +++ b/controllers/controllers.php @@ -412,7 +412,7 @@ function edit_favorite(&$user, $post_url, $like_of) { 'action' => 'update', 'url' => $post_url, 'replace' => [ - 'like-of' => $like_of + 'like-of' => [$like_of] ] ]; $r = micropub_post_for_user($user, $micropub_request, null, true);