Feed 유효성 통과!

https://validator.w3.org/feed/
This commit is contained in:
conory 2017-09-05 10:18:26 +09:00
parent 22b16ecc73
commit b667808d95
6 changed files with 27 additions and 19 deletions

View file

@ -689,12 +689,12 @@ class documentItem extends Object
function getRegdateGM()
{
return gmdate('r', ztime($this->get('regdate')));
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('r', $this->getRegdateTime());
}
function getRegdateDT()
{
return zdate($this->get('regdate'), 'c', false);
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('c', $this->getRegdateTime());
}
function getUpdate($format = 'Y.m.d H:i:s', $conversion = true)
@ -709,12 +709,12 @@ class documentItem extends Object
function getUpdateGM()
{
return gmdate('r', ztime($this->get('last_update')));
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('r', $this->getUpdateTime());
}
function getUpdateDT()
{
return zdate($this->get('last_update'), 'c', false);
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('c', $this->getUpdateTime());
}
function getPermanentUrl()