summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-29 22:51:03 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-29 22:51:03 +0000
commit1fb7148854a866cf01112abf49a9c910bb281951 (patch)
treed3df35205999c447122d3b7fbda500a781a3e59d
parent213b0cd7a503a431d0a1bd78b00065f5508de345 (diff)
downloadbrdo-1fb7148854a866cf01112abf49a9c910bb281951.tar.gz
brdo-1fb7148854a866cf01112abf49a9c910bb281951.tar.bz2
#100350 by dvessel. Adda missing <p> tag.
-rw-r--r--modules/book/book.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index 654269765..8f3fb2915 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -987,7 +987,7 @@ function book_help($section) {
}
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'outline') {
- return t('The outline feature allows you to include posts in the <a href="@book">book hierarchy</a>.', array('@book' => url('book')));
+ return '<p>'. t('The outline feature allows you to include posts in the <a href="@book">book hierarchy</a>.', array('@book' => url('book'))) .'</p>';
}
}