mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
#218 관리자 문서 모듈 관리 페이지에서 게시판과 같이 세션에 선택된 목록을 정리하고 일괄 이동/복사/삭제 가 가능하도록 코드 변경
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2738 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
14550e198f
commit
0f24ee06d3
3 changed files with 15 additions and 9 deletions
|
|
@ -105,7 +105,7 @@
|
|||
|
||||
// 파일 이동
|
||||
if(!$manual_insert&&!move_uploaded_file($file_info['tmp_name'], $filename)) return false;
|
||||
elseif($manual_insert) @rename($file_info['tmp_name'], $filename);
|
||||
elseif($manual_insert) @copy($file_info['tmp_name'], $filename);
|
||||
|
||||
// 사용자 정보를 구함
|
||||
$oMemberModel = &getModel('member');
|
||||
|
|
@ -119,7 +119,7 @@
|
|||
$args->source_filename = $file_info['name'];
|
||||
$args->uploaded_filename = $filename;
|
||||
$args->download_count = $download_count;
|
||||
$args->file_size = filesize($filename);
|
||||
$args->file_size = @filesize($filename);
|
||||
$args->comment = NULL;
|
||||
$args->member_srl = $member_srl;
|
||||
$args->sid = md5(rand(rand(1111111,4444444),rand(4444445,9999999)));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue