PostgreSQL is spitting out errors because of this:
$allowed_roles = db_query("SELECT rid FROM {blocks_roles} WHERE module = '%s' AND delta = %d", $block->module, $block->delta);
delta in the schema is a CHAR type field, not a numeric type. Attached is the patch to fix.
| Comment | File | Size | Author |
|---|---|---|---|
| homebox-correct-schema.patch | 775 bytes | josh waihi |
Comments
Comment #1
jchatard commentedThank you for the patch!
Just committed.