From 1cbc5439e1a250427587b4b31473a0b4448b68ff Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期三, 23 十月 2024 11:04:52 +0800
Subject: [PATCH] 可靠性仿真评估时后端增加可修设备可修阶段可靠度固定为1的控制
---
web/public/SVGOrigin/Method-Draw-master/editor/extensions/fileopen.php | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/web/public/SVGOrigin/Method-Draw-master/editor/extensions/fileopen.php b/web/public/SVGOrigin/Method-Draw-master/editor/extensions/fileopen.php
index 8aad827..7b44a5c 100644
--- a/web/public/SVGOrigin/Method-Draw-master/editor/extensions/fileopen.php
+++ b/web/public/SVGOrigin/Method-Draw-master/editor/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);
--
Gitblit v1.9.1