googlereaderimport: limit guid length
This commit is contained in:
parent
90f5a9d28b
commit
05e1e0ff20
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class GoogleReaderImport extends Plugin {
|
|||
foreach ($doc['items'] as $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']);
|
||||
$updated = date('Y-m-d h:i:s', $item['updated']);
|
||||
$link = '';
|
||||
|
|
Loading…
Reference in a new issue