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 |
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