summaryrefslogtreecommitdiff
path: root/modules/book.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-10-07 06:51:43 +0000
committerDries Buytaert <dries@buytaert.net>2005-10-07 06:51:43 +0000
commita1ae4da70b7fa74bc4314c535f0482c4086cab0d (patch)
tree758bba956562f0b41d90bf938616d08bf0091930 /modules/book.module
parente19af57a9a93ee5281d8e1f333eb175467ff961e (diff)
downloadbrdo-a1ae4da70b7fa74bc4314c535f0482c4086cab0d.tar.gz
brdo-a1ae4da70b7fa74bc4314c535f0482c4086cab0d.tar.bz2
- Removing tabs and trailing whitespaces.
Diffstat (limited to 'modules/book.module')
-rw-r--r--modules/book.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/book.module b/modules/book.module
index 0d5c0ded2..91af2a293 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -302,19 +302,19 @@ function book_outline() {
default:
$page = db_fetch_object(db_query('SELECT * FROM {book} WHERE vid = %d', $node->vid));
-
+
$form['parent'] = array(
- type => 'select', title => t('Parent'), default_value => $page->parent,
- options => book_toc($node->nid), description => t('The parent page in the book.')
+ type => 'select', title => t('Parent'), default_value => $page->parent,
+ options => book_toc($node->nid), description => t('The parent page in the book.')
);
-
+
$form['weight'] = array(
type => 'weight', title => t('Weight'), default_value => $page->weight, delta => 15,
description => t('Pages at a given level are ordered first by weight and then by title.')
);
-
+
$form['log'] = array(
- type => 'textarea', title => t('Log message'), cols => 60, rows => 5,
+ type => 'textarea', title => t('Log message'), cols => 60, rows => 5,
default_value => $node->log, description => t('An explanation to help other authors understand your motivations to put this post into the book.')
);