diff options
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book.module b/modules/book.module index 55848fcbb..72059c6e3 100644 --- a/modules/book.module +++ b/modules/book.module @@ -169,7 +169,7 @@ function book_form(&$node, &$help, &$error) { if (user_access("administer nodes")) { $output .= form_weight(t("Weight"), "weight", $node->weight, 15, t("The heavier pages will sink and the lighter pages will be positioned nearer the top.")); if (user_access("create php content")) { - $output .= form_select("Type", "format", $node->format, array(0 => "HTML / text", 1 => "PHP")); + $output .= form_radios("Type", "format", $node->format, array(0 => "HTML / text", 1 => "PHP")); } } else { |