forked from wallabag/wallabag
Merge pull request #603 from mariroz/dev
postgres sequence error fix, issue #602
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user