From: <tho...@la...> - 2005-10-12 20:19:22
|
Hello, I've just updated my cvs repository. In config/config-dist.ini, I see : ; DBAUTH_PREF_INSERT = "INSERT INTO pref SET prefs='$pref_blob', userid='$userid'" This is not compatible with Postgresql ! The good statement for _all_ SQL SGBDRs is : DBAUTH_PREF_INSERT = "INSERT INTO pref (prefs,userid) VALUES ('$pref_blob','$userid')" While config-dist.ini is used by the configurator, it will be wise to correct this :) Greetings, -- Thomas Harding |