Unpublished (own) content does not shown for the users, on the admin content list page (admin/content) after the drupal 7.16 version upgrade. I given all respective permissions, but content not shown.
As per my analysis:
In the "node" core module 'node.admin.inc" file,
function node_admin_nodes() {
...
...
around line number 426
$nids = $query
->fields('n',array('nid'))
->limit(30)
->orderByHeader($header)
->addTag('node_access')
->execute()
->fetchCol();
}
if we remove the "->addTag('node_access')" line, the unpublished own content is displaying for the users.
I agree we should not touch in the core module files, but are there any other way to handle this?
-Thanks
Jagadees