Closed (fixed)
Project:
Multiple Image Upload
Version:
5.x-1.0
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Nov 2007 at 21:23 UTC
Updated:
26 Nov 2007 at 13:33 UTC
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).