增加一个图片文件转存的功能
This commit is contained in:
@@ -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'];
|
||||
|
||||
Reference in New Issue
Block a user