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
Comment #1
sdrycroft commentedOoops. Consider it added to CVS. It'll be added to the next release (given it's far from critical).