I have installed the Flexinode module for 4.7 and I cannot get the file upload field to work. I attach the file and once I submit the page, where it should provide the field title and the link to the file download it only reads, I qoute, "eh?". What is going on and why does it say "eh?"??? Can anyone please help. I am developing this for a non-profit and am in need of being able to attach files to a Service Organization listing.

Thanks so much!
Jen

CommentFileSizeAuthor
scshot_eh.jpg8.98 KBg76

Comments

cerveau’s picture

Version: » 4.6.x-1.x-dev

I've found the same problem as Jenadmin and will submit it as a bug.
The cause is not in flexinode but in the field_timestamp.inc file which is part of the module. Line 170 has the error.
The CVS file is 5 months old... I'm really amazed no one has caught it or fixed it yet... even though, granted, it's a very quick and easy fix...

samc’s picture

Patch can be found here for 'eh?' issue:

http://drupal.org/node/54215

samc’s picture

In case anyone needs this for 4.6, fix follows in patch format:

 function theme_flexinode_timestamp($field_id, $label, $value, $formatted_value) {
   $output = theme('form_element', $label, $formatted_value);
-  $output = '<div class="flexinode-timestamp-'. $field_id .'">eh?'. $output .'</div>';
+  $output = '<div class="flexinode-timestamp-'. $field_id .'">'. $output .'</div>';
   return $output;
 }
Bèr Kessels’s picture

Version: 4.6.x-1.x-dev » 4.7.x-1.x-dev
Component: Field types » Field type: file
Status: Active » Closed (duplicate)

There are numerous specific bug-issues on the filefield. Please update them with patches to fix this issue.