diff --git a/core/modules/node/node.module b/core/modules/node/node.module index fc08afa..e216973 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -2857,6 +2857,10 @@ function node_form_system_themes_admin_form_submit($form, &$form_state) { * TRUE if the operation may be performed, FALSE otherwise. * * @see node_menu() + * + * @todo + * Add langcode support to node_access schema / queries. + * http://drupal.org/node/1658846 */ function node_access($op, $node, $account = NULL, $langcode = NULL) { $rights = &drupal_static(__FUNCTION__, array()); @@ -2921,7 +2925,6 @@ function node_access($op, $node, $account = NULL, $langcode = NULL) { // If the module did not override the access rights, use those set in the // node_access table. - // @todo: add langcode support to node_access schema / queries. if ($op != 'create' && $node->nid) { if (module_implements('node_grants')) { $query = db_select('node_access');