I've added the audio file field to be listed in a Views table display but the module dies with the error message:
Call to undefined function _field_file_load() in /var/www/html/drupal-5.0/sites/all/modules/mediafield/audiofield.module on line 316
I've added the audio file field to be listed in a Views table display but the module dies with the error message:
Call to undefined function _field_file_load() in /var/www/html/drupal-5.0/sites/all/modules/mediafield/audiofield.module on line 316
Comments
Comment #1
buddaThe correct code for the broken function should be:-
I replaced _field_file_load() with _filefield_file_load().
I suspect you should be using the module_invoke() hook to access the filefield module function, rather than going direct. Or.... the audiofield.info file should be updated to include the fact that you need the filefield.module installed to use audiofield? - otherwise clone the function and put it in the audiofield.module
Comment #2
buddaComment #3
buddaBetter solution @ http://drupal.org/node/209902