mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 03:21:01 +00:00
Merge pull request #603 from mariroz/dev
postgres sequence error fix, issue #602
This commit is contained in:
commit
d7ee9f986b
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ class Database {
|
|||
$id = null;
|
||||
}
|
||||
else {
|
||||
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'users_id_seq' : '' ));
|
||||
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'entries_id_seq' : '') );
|
||||
}
|
||||
return $id;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue