From 4a689a99b97b72f351c15f3f6dc99fd0cf735378 Mon Sep 17 00:00:00 2001 From: Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> Date: Thu, 23 Mar 2006 21:20:59 +0000 Subject: [PATCH] #55493, Editing an existing book page kills Drupal, patch by chx --- modules/book.module | 2 +- modules/book/book.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/book.module b/modules/book.module index 825ac5c0c570..5ecd04a83545 100644 --- a/modules/book.module +++ b/modules/book.module @@ -248,7 +248,7 @@ function book_validate($node) { */ function book_form(&$node) { if ($node->nid && !$node->parent && !user_access('create new books')) { - $form['parent'] = array('#type' => 'value', $node->parent); + $form['parent'] = array('#type' => 'value', '#value' => $node->parent); } else { $form['parent'] = array('#type' => 'select', diff --git a/modules/book/book.module b/modules/book/book.module index 825ac5c0c570..5ecd04a83545 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -248,7 +248,7 @@ function book_validate($node) { */ function book_form(&$node) { if ($node->nid && !$node->parent && !user_access('create new books')) { - $form['parent'] = array('#type' => 'value', $node->parent); + $form['parent'] = array('#type' => 'value', '#value' => $node->parent); } else { $form['parent'] = array('#type' => 'select', -- GitLab