ticket:187 calander error fix. (when zbxe's timzone is different from server's timezone)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2654 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2007-09-30 12:06:20 +00:00
parent 065e25458b
commit 2cc6c3fd6f
2 changed files with 20 additions and 13 deletions

View file

@ -26,7 +26,7 @@
$regdate = Context::get('search_keyword');
if($regdate) $obj->regdate = zdate($regdate, 'Ym');
}
if(!$obj->regdate) $obj->regdate = date('Ym');
if(!$obj->regdate) $obj->regdate = date('YmdHis');
// document 모듈의 model 객체를 받아서 getDailyArchivedList() method를 실행
$oDocumentModel = &getModel('document');