When I enable content_access I get the following warning on all my pages:
user warning: Unknown column 'n.nid' in 'field list'
query: SELECT DISTINCT DISTINCT(n.nid), title, changed
FROM node
WHERE status = 1 AND type !='image'
ORDER BY changed DESC
LIMIT 6 in
/includes/common.inc(1547)
: evak()'d code on line 14.
The module seems to work tho'so does everything else on the site as far as I can tell.
Comments
Comment #1
Nda commentednvm, was some sql I had running in a block.
changed "select distinct nid" to "select distinct(nid)" and the error was gone