Running D5 with MediaMover 5.x-1.0-rc4. When I run a configuration I get this error:

Call to undefined function filefield_widget_upload_validators ... in mm_cck.module line 350.

After searching thru the code I've found that the filefield_widget_upload_validators() is a new function in the D6 FileField module.

Comments

no_name_given’s picture

This problem was introduced into RC1 during D6 backporting.
Commenting out line 350 in mm_cck.module fixes the problem.

$validators = filefield_widget_upload_validators($field);

$validators is never used so commenting out the call has no side effects.

samhassell’s picture

subscribe

arthurf’s picture

Version: 5.x-1.0-rc4 » 5.x-1.x-dev
Status: Active » Needs review

Thanks for the report. I made this change- please try the dev version and see if things are functioning as expected.