Hi,

In all versions I could download, there's these two lines in imagecache.install:

db_query("CREATE SEQUENCE imagecache_preset_presetid_seq INCREMENT 1 START 1;");
db_query("CREATE SEQUENCE imagecache_action_actionid_seq INCREMENT 1 START 1;");

These should be:
db_query("CREATE SEQUENCE {imagecache_preset}_presetid_seq INCREMENT 1 START 1;");
db_query("CREATE SEQUENCE {imagecache_action}_actionid_seq INCREMENT 1 START 1;");

To allow for prefixed tables.

Comments

dopry’s picture

Status: Active » Fixed

fixed in DRUPAL-5--2 and HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.