API/Note->toArray(): Return UNIX timestamp instead of date string for modified

master
Skylar Ittner 5 years ago
parent be39e37f9c
commit 88e56626af

@ -380,7 +380,7 @@ class Note {
'content' => $this->getText(),
'html' => $this->getHTML(true),
'title' => $this->getTitle(),
'modified' => $this->getModified(),
'modified' => strtotime($this->getModified()),
'favorite' => $this->getFavorite(),
'owner' => [
'uid' => $owner->getUID(),

Loading…
Cancel
Save