mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
지정 용량 이하의 첨부파일도 검색할 수 있도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6520 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
395c34a23e
commit
af624a6527
3 changed files with 46 additions and 37 deletions
|
|
@ -27,11 +27,17 @@
|
|||
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
|
||||
$args->s_filename = $search_keyword;
|
||||
break;
|
||||
case 'filesize' :
|
||||
$args->s_filesize = (int)$search_keyword;
|
||||
case 'filesize_more' :
|
||||
$args->s_filesize_more = (int)$search_keyword;
|
||||
break;
|
||||
case 'filesize_mega' :
|
||||
$args->s_filesize = (int)$search_keyword * 1024 * 1024;
|
||||
case 'filesize_mega_more' :
|
||||
$args->s_filesize_more = (int)$search_keyword * 1024 * 1024;
|
||||
break;
|
||||
case 'filesize_less' :
|
||||
$args->s_filesize_less = (int)$search_keyword;
|
||||
break;
|
||||
case 'filesize_mega_less' :
|
||||
$args->s_filesize_less = (int)$search_keyword * 1024 * 1024;
|
||||
break;
|
||||
case 'download_count' :
|
||||
$args->s_download_count = (int)$search_keyword;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue