function flatcomments_existing_flatten_access in Flatcomments 6.2
Same name and namespace in other branches
- 6 flatcomments_existing/flatcomments_existing.module \flatcomments_existing_flatten_access()
1 string reference to 'flatcomments_existing_flatten_access'
- flatcomments_existing_menu in flatcomments_existing/
flatcomments_existing.module - Implementation of hook_menu().
File
- flatcomments_existing/
flatcomments_existing.module, line 37 - Remove threading from existing comments by content type.
Code
function flatcomments_existing_flatten_access() {
return user_access('administer comments') && user_access('administer nodes') && user_access('administer content types');
}