diff --git a/modules/node/node.pages.inc b/modules/node/node.pages.inc index 86aaf9f8ea7..748df2c2c84 100644 --- a/modules/node/node.pages.inc +++ b/modules/node/node.pages.inc @@ -60,7 +60,7 @@ function node_add($type) { $types = node_type_get_types(); $type = isset($type) ? str_replace('-', '_', $type) : NULL; // If a node type has been specified, validate its existence. - if (isset($types[$type])) { + if (isset($types[$type]) && node_access('create', $type)) { // Initialize settings: $node = (object)array('uid' => $user->uid, 'name' => (isset($user->name) ? $user->name : ''), 'type' => $type, 'language' => '');