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.

CommentFileSizeAuthor
upload_preview_bug_1248363191939.jpg15.85 KBchirale

Comments

Ivan Simonov’s picture

upload_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);}

rmiddle’s picture

Status: Active » Reviewed & tested by the community