diff --git a/dzz/system/fileselection/ajax.php b/dzz/system/fileselection/ajax.php index 266d811..d911519 100644 --- a/dzz/system/fileselection/ajax.php +++ b/dzz/system/fileselection/ajax.php @@ -168,41 +168,41 @@ if ($operation == 'upload') {//上传图片文件 switch ($type) { case 'newTxt': $filename = lang('new_txt') . '.txt'; - if (!perm_check::checkperm($path, 'upload', $bz)) { + if (!perm_check::checkperm_Container($fid, 'upload', $bz)) { exit(json_encode(array('error' => lang('privilege')))); } $content = ' '; break; case 'newDzzDoc': $filename = lang('new_dzzdoc') . '.dzzdoc'; - if (!perm_check::checkperm($path, 'upload', $bz)) { + if (!perm_check::checkperm_Container($fid, 'upload', $bz)) { exit(json_encode(array('error' => lang('privilege')))); } $content = ' '; break; case 'newDoc': $filename = lang('new_word') . '.docx'; - if (!perm_check::checkperm($path, 'upload', $bz)) { + if (!perm_check::checkperm_Container($fid, 'upload', $bz)) { exit(json_encode(array('error' => lang('privilege')))); } $content = file_get_contents(DZZ_ROOT . './dzz/images/newfile/word.docx'); break; case 'newExcel': $filename = lang('new_excel') . '.xlsx'; - if (!perm_check::checkperm($path, 'upload', $bz)) { + if (!perm_check::checkperm_Container($fid, 'upload', $bz)) { exit(json_encode(array('error' => lang('privilege')))); } $content = file_get_contents(DZZ_ROOT . './dzz/images/newfile/excel.xlsx'); break; case 'newPowerPoint': $filename = lang('new_PowerPoint') . '.pptx'; - if (!perm_check::checkperm($path, 'upload', $bz)) { + if (!perm_check::checkperm_Container($fid, 'upload', $bz)) { exit(json_encode(array('error' => lang('privilege')))); } $content = file_get_contents(DZZ_ROOT . './dzz/images/newfile/ppt.pptx'); break; default: - if (!perm_check::checkperm($path, 'upload', $bz)) { + if (!perm_check::checkperm_Container($fid, 'upload', $bz)) { exit(json_encode(array('error' => lang('privilege')))); } $content = ' ';