By willk on
Since Drupal has option to allow anonymous users to create and edit content, how does work when anonymous users are editing their own content? Does Drupal use cookies to remember the computer?
Thanks
Since Drupal has option to allow anonymous users to create and edit content, how does work when anonymous users are editing their own content? Does Drupal use cookies to remember the computer?
Thanks
Comments
they can edit all content which is posted by anonymous (uid = 0)
when you give permission "edit own content" then anonymous user can edit all content which is posted as anonymous.
because drupal uses access permission is based on user. here user id for anonymous user is 0 . so anonymous user can edit all content which is posed by uid 0,
as per my knowledge cookies is not used for above things.
Thanks
Now it all makes sense