Bleh. :( Sorry. One last time and I'll get the commit message right, I swear. :P

merge-requests/26/head
Angie Byron 2009-11-02 04:45:02 +00:00
parent e42209f753
commit 74215ea2bb
1 changed files with 1 additions and 1 deletions

View File

@ -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' => '');