diff -up old/content_access.module new/content_access.module
--- old/content_access.module	2008-01-15 16:27:18.000000000 +0530
+++ new/content_access.module	2008-03-16 00:48:47.484375000 +0530
@@ -620,3 +620,20 @@ function content_access_node_type($op, $
       break;
   }
 }
+
+/**
+ * Implementation of hook_node_access_explain
+ */
+function content_access_node_access_explain($row) {
+  static $interpretations = array();
+  switch ($row->realm) {
+    case 'content_access_author':  
+      $interpretations[$row->gid] = t('Content access: author of the content can access');
+      break;
+    case 'content_access_rid':
+      $roles = user_roles();
+      $interpretations[$row->gid] = t('Content access: ') . $roles[$row->gid] . t(' can access');
+      break;  
+  }
+  return $interpretations[$row->gid];
+}
\ No newline at end of file
