#18069516 * 글 작성자에게 비밀댓글의 첨부파일이 보이지 않는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6529 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2009-06-12 10:08:23 +00:00
parent e51b20e4eb
commit 8cd407cf08

View file

@ -276,12 +276,12 @@
}
function hasUploadedFiles() {
if($this->isSecret() && !$this->isGranted()) return false;
if(($this->isSecret() && !$this->isAccessible()) && !$this->isGranted()) return false;
return $this->get('uploaded_count')? true : false;
}
function getUploadedFiles() {
if($this->isSecret() && !$this->isGranted()) return;
if(($this->isSecret() && !$this->isAccessible()) && !$this->isGranted()) return;
if(!$this->get('uploaded_count')) return;
$oFileModel = &getModel('file');