mirror of
https://github.com/moparisthebest/wallabag
synced 2025-01-11 13:48:45 -05:00
Merge pull request #603 from mariroz/dev
postgres sequence error fix, issue #602
This commit is contained in:
commit
d7ee9f986b
@ -374,7 +374,7 @@ class Database {
|
|||||||
$id = null;
|
$id = null;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'users_id_seq' : '' ));
|
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'entries_id_seq' : '') );
|
||||||
}
|
}
|
||||||
return $id;
|
return $id;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user