Browse Source

fix media uploading in html editor

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

+ 9
- 3
lib/helpers.php View File

@ -124,9 +124,15 @@ function micropub_post($endpoint, $params, $access_token, $file = NULL, $json =
curl_setopt($ch, CURLOPT_POST, true);
if($file) {
$file_path = $file['tmp_name'];
$file_content = file_get_contents($file_path);
$filename = $file['name'];
if(is_string($file)) {
$file_path = $file;
$file_content = file_get_contents($file_path);
$filename = 'file';
} else {
$file_path = $file['tmp_name'];
$file_content = file_get_contents($file_path);
$filename = $file['name'];
}
} else {
$file_path = false;
}

Loading…
Cancel
Save