When using drupal with a non-english theme, clicking "submit" button in admin/tablemanager/tableedit/5 page produces the same result as clicking a delete column button.

Reverting to english hides the problem and allows to use the module properly.

Drupal 4.7.2, table_manager of 2/7/2006 (latest at the time)

Comments

pobster’s picture

That's bizarre... Erm... I can't recreate it? But I did have a similar problem when I enabled caching (which I simply couldn't fix as I don't understand how to!) Can you give me steps on exactly how to recreate it, using which theme, etc?

Thanks

Pobster

pobster’s picture

Assigned: Unassigned » pobster

Aha! :o) Of course!!! You don't really mean non-English 'theme' you mean non-English localization! This happens because Drupal translates the Submit button into, for example 'Enviar' in Spanish and Tablemanager can no longer tell what's been clicked as it only tests for 'Submit'. This is puzzling... I don't know what to do here... Leave it with me...

Pobster

pobster’s picture

Hmmm... Puzzling... For the time being change line 1514 (version 1.59) from:

case "Submit":

To:

case "Submit" || "Enviar": (as in the Spanish example I gave before)

Pobster

pobster’s picture

Status: Active » Fixed

Okay, fixed as of version 1.65 sorry for the long delay.

Pobster

pobster’s picture

Status: Fixed » Closed (fixed)