diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-06-05 19:22:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-06-05 19:22:58 +0000 |
commit | 831b2e0e103a5aa3f607bbfd3ac47899baef9842 (patch) | |
tree | 50beb291d28a0cd0ffacac513b4b2bb850aa6ff0 /modules/node/node.module | |
parent | 10a5ba7132475e1dd3b68ac7cf1daa0598987a22 (diff) | |
download | brdo-831b2e0e103a5aa3f607bbfd3ac47899baef9842.tar.gz brdo-831b2e0e103a5aa3f607bbfd3ac47899baef9842.tar.bz2 |
- Rollback of last patch.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 68997c9f9..af28dd192 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -789,7 +789,7 @@ function node_type_set_defaults($info = array()) { * @param $hook * A string containing the name of the hook. * @return - * TRUE if the $hook exists in the node type of $node. + * TRUE iff the $hook exists in the node type of $node. */ function node_hook($node, $hook) { $base = node_type_get_base($node); @@ -2870,7 +2870,7 @@ function node_access_rebuild($batch_mode = FALSE) { } else { // Not using any node_access modules. Add the default grant. - db_insert('node_access') + db_insert('node_accesss') ->fields(array( 'nid' => 0, 'realm' => 'all', @@ -3392,7 +3392,7 @@ function node_requirements($phase) { $requirements['node_access'] = array( 'title' => $t('Node Access Permissions'), 'value' => $value, - 'description' => $description . ' ' . l('Rebuild permissions', 'admin/reports/status/rebuild'), + 'description' => $description . ' ' . l('Rebuild Permissions', 'admin/reports/status/rebuild'), ); return $requirements; } |