I prefix my drupal tables with "dru_" when i isntall drupal. The imagex module's .install file does not take this into account and users will have the wrong tables created.

There is an easy fix for this that I recommend get implemented as soon as possible.

Here's the change:

$result = db_query("CREATE TABLE imagex (

TO

$result = db_query("CREATE TABLE {imagex} (

Notice the {} around imagex.

Comments

sdrycroft’s picture

Status: Reviewed & tested by the community » Closed (fixed)

Ooops. Consider it added to CVS. It'll be added to the next release (given it's far from critical).