I make all queries in contemplate.module compatible for PostgreSQL. I replaced all double quotes in queries in to single quotes. Patch attached.

Comments

bkieser’s picture

StatusFileSize
new15.11 KB

Thank you for that patch. Attached is the actual module file in case someone doesn't know how to patch or can't do it.

Also, you need to manually create that contemplate table because at this point ONLY mysql is supported in the install function:

create table contemplate(type varchar(32) NOT NULL default '' primary key,
teaser text NOT NULL,
body text NOT NULL);

bkieser’s picture

StatusFileSize
new15.11 KB

One of the selects slipped through in the previous file. Here is the debugged one.

jjeff’s picture

Status: Reviewed & tested by the community » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)