HuasoFoundries/phpPgAdmin6

Cannot insert new rows

joachimtingvold opened this issue · 1 comments

Trying to insert new rows, yields the following error;

image
image

It's fixed in release v6.1.1 (the last one is for said bug).

It seems a lot of bugs got introduced after this commit: 2b72a65

Basically, several loose comparison operators were replaced with strict equality. For the insertion operation it compares a numeric string sent through $_POST against an incremental record. They would never pass that internal check, and the error message does not help either.

There might be quite a few errors of this same kind. At least I'm pretty sure where to look for the breaking change .