Reviewed & tested by the community
Project:
Upload previews
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Jul 2009 at 15:34 UTC
Updated:
22 Mar 2011 at 14:38 UTC
Same as #179378: Attempt to assign property of non-object in (error on preview), but on Drupal 6. Maybe you can port the patch used there.
| Comment | File | Size | Author |
|---|---|---|---|
| upload_preview_bug_1248363191939.jpg | 15.85 KB | chirale |
Comments
Comment #1
Ivan Simonov commentedupload_preview.module
change line 150
from
$node->content['files']['#files'][$fid]->preview = module_invoke_all('upload_preview', $file);to
if (is_object($node->content['files']['#files'][$fid])) { $node->content['files']['#files'][$fid]->preview = module_invoke_all('upload_preview', $file);}Comment #2
rmiddle commented