Browse Source

fix errors in previous PR

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

+ 7
- 3
lib/helpers.php View File

@ -123,9 +123,13 @@ function micropub_post($endpoint, $params, $access_token, $file = NULL, $json =
curl_setopt($ch, CURLOPT_URL, $endpoint); curl_setopt($ch, CURLOPT_URL, $endpoint);
curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POST, true);
$file_path = $file['tmp_name'];
$file_content = file_get_contents($file_path) . self::EOL;
$filename = $file['name'];
if($file) {
$file_path = $file['tmp_name'];
$file_content = file_get_contents($file_path);
$filename = $file['name'];
} else {
$file_path = false;
}
// Send the access token in both the header and post body to support more clients // Send the access token in both the header and post body to support more clients
// https://github.com/aaronpk/Quill/issues/4 // https://github.com/aaronpk/Quill/issues/4

Loading…
Cancel
Save