Hello,

I want that authentificated user can clone node. So i gave the permission by people->permission-> Node clone -> clone any node.

Because only admin can clone by default. But even if the permission is given, when a standard user get to "[nid]/clone/confim" he get ACCES DENIED.

Please can you help me to solve it ?

COrdially

Comments

wentiti created an issue.

cvikir’s picture

Hello i think this could be related to https://www.drupal.org/node/1952192

Bl33s’s picture

Had a similar issue; fixed by granting the user access to not only clone the node, but to view and create the content type as well.

$access = $access && node_access('view', $node) && node_access('create', $node->type);