From 94d01f62a47130456f4bfc125dc9ad24d64a5b27 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Fri, 24 Apr 2015 22:42:39 -0700 Subject: [PATCH] bad comma --- lib/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers.php b/lib/helpers.php index b56ec9c..7cc4220 100644 --- a/lib/helpers.php +++ b/lib/helpers.php @@ -88,7 +88,7 @@ function micropub_post($endpoint, $params, $access_token) { 'Authorization: Bearer ' . $access_token )); curl_setopt($ch, CURLOPT_POST, true); - $post = http_build_query(array_merge(array(, + $post = http_build_query(array_merge(array( 'access_token' => $access_token, 'h' => 'entry' ), $params));