diff options
| author | 2017-07-23 11:51:46 +0200 | |
|---|---|---|
| committer | 2017-07-23 11:51:46 +0200 | |
| commit | 46c31a75d746773c223c29c78211723170104189 (patch) | |
| tree | ae9ff5b8d0ffcead7be087484ff59528b5cad9f2 /p/api/greader.php | |
| parent | bf6dc46c644002dd195dfad18af9a1116a00fad4 (diff) | |
Fix timestamp format with PostgreSQL for EasyRSS
https://github.com/Alkarex/EasyRSS/issues/31
Diffstat (limited to 'p/api/greader.php')
| -rw-r--r-- | p/api/greader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/greader.php b/p/api/greader.php index 6b9ea4526..7f6f0b04f 100644 --- a/p/api/greader.php +++ b/p/api/greader.php @@ -503,7 +503,7 @@ function streamContents($path, $include_target, $start_time, $count, $order, $ex $item = array( 'id' => /*'tag:google.com,2005:reader/item/' .*/ dec2hex($entry->id()), //64-bit hexa http://code.google.com/p/google-reader-api/wiki/ItemId 'crawlTimeMsec' => substr($entry->id(), 0, -3), - 'timestampUsec' => $entry->id(), //EasyRSS + 'timestampUsec' => '' . $entry->id(), //EasyRSS 'published' => $entry->date(true), 'title' => $entry->title(), 'summary' => array('content' => $entry->content()), |
