Hi I'm the author of the biblio module (http://drupal.org/project/biblio) and one of my users reported that when using your module, the input form for the biblio module no longer functioned correctly.

I believe this is due to the fact that in your function webfm_form_alter you are setting

$form['#theme'] = 'webfm_upload_form';

which sets the theme function for the whole form, and prevents my theme function from being called. I think you should do something like this instead...

$form['webfm-attach']['#theme'] = 'webfm_upload_form';

This fixes the theme issue, but there still seems to be some javascript issues to be resolved.

Ron.

Comments

robmilne’s picture

Hi Ron,

A thousand pardons for stepping on your theme function. I'll take a look at this and hopefully roll out a new rev by next week.

-rob

robmilne’s picture

Status: Active » Fixed
rjerome’s picture

Many thanks....

Ron.

Anonymous’s picture

Status: Fixed » Closed (fixed)