Browse Source

Update api.php

develop
tianya 3 months ago
parent
commit
a4330baa14
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      src/admin/api.php

+ 9
- 1
src/admin/api.php View File

@@ -353,7 +353,15 @@ if ($action === 'is_need_check_code') {
)); ));
exit; exit;
} else if($action === 'upload_image') { } else if($action === 'upload_image') {
checkLogin();
$cuserLogin = new userLogin();
if ($cuserLogin->getUserID() <= 0) {
echo json_encode(array(
"code" => -1,
"msg" => "登录系统后才能上传图片",
"data" => null,
));
exit;
}
$imgfile_name = $_FILES["file"]['name']; $imgfile_name = $_FILES["file"]['name'];
$activepath = $cfg_image_dir; $activepath = $cfg_image_dir;
$allowedTypes = array("image/pjpeg", "image/jpeg", "image/gif", "image/png", "image/xpng", "image/wbmp", "image/webp"); $allowedTypes = array("image/pjpeg", "image/jpeg", "image/gif", "image/png", "image/xpng", "image/wbmp", "image/webp");


Loading…
Cancel
Save