Hi,

I noticed a coding error in your module, which bring SQL problem on install if you use table prefix.

The error is in the .install file :

  db_query("UPDATE system SET weight = 9999999999 WHERE name = '%s'", 'vertical_tabs');

You should use brackets when you call a table in your query, so the correct code should be :

  db_query("UPDATE {system} SET weight = 9999999999 WHERE name = '%s'", 'vertical_tabs');

Comments

dmitrig01’s picture

Status: Active » Fixed

Oops, yeah, thank you.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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