mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 04:45:56 +00:00
googlereaderimport: limit guid length
This commit is contained in:
@@ -89,7 +89,7 @@ class GoogleReaderImport extends Plugin {
|
|||||||
foreach ($doc['items'] as $item) {
|
foreach ($doc['items'] as $item) {
|
||||||
// print_r($item);
|
// print_r($item);
|
||||||
|
|
||||||
$guid = db_escape_string($this->link, $item['id']);
|
$guid = db_escape_string($this->link, mb_substr($item['id'], 0, 250));
|
||||||
$title = db_escape_string($this->link, $item['title']);
|
$title = db_escape_string($this->link, $item['title']);
|
||||||
$updated = date('Y-m-d h:i:s', $item['updated']);
|
$updated = date('Y-m-d h:i:s', $item['updated']);
|
||||||
$link = '';
|
$link = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user