From 327a8a4650379d6eb722184ff359ec5e41d947e7 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Wed, 26 Oct 2016 23:10:25 +0100 Subject: [PATCH 1/2] Use array for syndicate-to to allow multiple values --- app/Http/Controllers/MicropubClientController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/MicropubClientController.php b/app/Http/Controllers/MicropubClientController.php index 4c06a867..bfce94a8 100644 --- a/app/Http/Controllers/MicropubClientController.php +++ b/app/Http/Controllers/MicropubClientController.php @@ -160,7 +160,7 @@ class MicropubClientController extends Controller if ($request->input('syndicate-to')) { foreach ($request->input('syndicate-to') as $syn) { $multipart[] = [ - 'name' => 'syndicate-to', + 'name' => 'syndicate-to[]', 'contents' => $syn, ]; } From 52a3f44120dd6318afeb2f33f618fd847fcca938 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Wed, 26 Oct 2016 23:13:37 +0100 Subject: [PATCH 2/2] Bump version number --- changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.md b/changelog.md index 55f17a5e..22115b13 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.0.15.4 (2016-10-26) + - Use an array with `syndicate-to` to allow multiple values + ## Version 0.0.15.3 (2016-10-26) - Fix: didn’t import the namespace for the facebook job