Hi

I have problem with this warning.
I checked patches form this node http://drupal.org/node/1171760 but it didn't help me.
I get this warning on the page with views. In the view I display files .mp3.

THX

Comments

blackspiraldancer’s picture

...actually I'm experiencing this too, using AudioField to load the MP3 file. Beside the warning, the audio file plays correctly.

blackspiraldancer’s picture

Status: Active » Needs work

I don't know if I'm doing this right, and sure I don't know the "patch" syntax, but if you replace line 308 of filefield_field.inc from

if (isset($file['data'])) {

with

if (isset($file['data']) && !empty($items[$delta]['data'])) {

no more error is displayed, and the mp3 file is still accessible from the player.
I guess I'll need to do my homework now and learn how to write a proper patch... :P

quicksketch’s picture

Status: Needs work » Closed (duplicate)
enjoy777’s picture

Status: Closed (duplicate) » Closed (fixed)

@blackspiraldancer
Thank you for your input. It works!

@quicksketch
I didn't work whit this what you said, your error is in line 309, this what I wrote is in line 319. Small difference.