增加一个图片文件转存的功能

This commit is contained in:
2024-12-07 18:07:29 +08:00
parent d7aa8ef257
commit aa6fd6db64
4 changed files with 41 additions and 21 deletions

View File

@@ -234,14 +234,14 @@ include_once("kindeditor.php") ;
$memory_limit = $_POST['memory_limit'];
$description = $_POST['description'];
$description = decodeMarkdownEntities($description);
$description = MarkdownEntities($description);
$input = $_POST['input'];
$input = decodeMarkdownEntities($input);
$input = MarkdownEntities($input);
$output = $_POST['output'];
$output = decodeMarkdownEntities($output);
$output = MarkdownEntities($output);
$sample_input = $_POST['sample_input'];
$sample_output = $_POST['sample_output'];
@@ -249,7 +249,7 @@ include_once("kindeditor.php") ;
//if ($sample_output=="") $sample_output="\n";
$hint = $_POST['hint'];
$hint = decodeMarkdownEntities($hint);
$hint = MarkdownEntities($hint);
$source = $_POST['source'];
$remote_oj= $_POST['remote_oj'];