From 58aee8cdad4baef160f7e0cf6dc5e245a1acc080 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 27 Jun 2005 18:33:33 +0000 Subject: - Patch #25603 by Stefan: made the sizes of forms consistent. TODO: document the defaults in the PHPdoc comments. --- modules/book.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/book.module') diff --git a/modules/book.module b/modules/book.module index 25fd86c90..094844d93 100644 --- a/modules/book.module +++ b/modules/book.module @@ -960,7 +960,7 @@ function book_node_visitor_opml_post($node, $depth) { * Creates a row for the 'admin' view of a book. Each row represents a page in the book, in the tree representing the book */ function book_admin_edit_line($node, $depth = 0) { - return array('
'. form_textfield(NULL, $node->nid .'][title', $node->title, 64, 255) .'
', form_weight(NULL, $node->nid .'][weight', $node->weight, 15), l(t('view'), 'node/'. $node->nid), l(t('edit'), 'node/'. $node->nid .'/edit'), l(t('delete'), 'node/'.$node->nid.'/delete')); + return array('
'. form_textfield(NULL, $node->nid .'][title', $node->title, 60, 255) .'
', form_weight(NULL, $node->nid .'][weight', $node->weight, 15), l(t('view'), 'node/'. $node->nid), l(t('edit'), 'node/'. $node->nid .'/edit'), l(t('delete'), 'node/'.$node->nid.'/delete')); } function book_admin_edit_book($nid, $depth = 1) { -- cgit v1.2.3