I just want to use node_save()
to change value of an image field in my article, and I am using the following code.
$node = node_load(1);
$node->field_image["und"][0]["filename"] = $file_name;
node_save($node);
When I press F5, the image in my article is not changed.
Is anything wrong in my code?