Menu

#42 Checkboxes do not update properly when using postgresql database

0.99.3
open
postgresql (1)
5
2017-09-28
2017-09-28
No

. The variable PGdb was initialized incorrectly in scheda.php:

File: scheda.php, line 291

Incorrect: $PGdb= ($db1['dbtype']=='postgres') ? "true":"false";

Verfied fix: $PGdb= ($db1['dbtype']=='postgres') ? true:false;

Discussion


Log in to post a comment.