svn class에서 서버에 따라 svn log의 날짜값을 변환하지 못하는 문제가 발생하여 이를 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6609 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-06-19 23:11:47 +00:00
parent 55828703b8
commit 578cdee138

View file

@ -346,7 +346,8 @@
}
function getDateStr($format, $str) {
return date($format, strtotime($str));
$t = str_replace(array('-','T',':','.'),'',$str);
return zdate($t, $format);
}
function getTimeGap($str, $dayStr = 'day', $hourStr = 'hour', $minStr = 'minute') {