jinlin
2024-09-26 7ec9326ce00d08f9d957981f2edff6df26f24a28
web/public/SVGOrigin/Method-Draw-master/method-draw/extensions/fileopen.php
@@ -11,15 +11,15 @@
 */
  // Very minimal PHP file, all we do is Base64 encode the uploaded file and
  // return it to the editor
  $file = $_FILES['svg_file']['tmp_name'];
  $output = file_get_contents($file);
  $type = $_REQUEST['type'];
  $prefix = '';
  // Make Data URL prefix for import image
  if($type == 'import_img') {
    $info = getimagesize($file);