diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-29 22:51:03 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-29 22:51:03 +0000 |
commit | 1fb7148854a866cf01112abf49a9c910bb281951 (patch) | |
tree | d3df35205999c447122d3b7fbda500a781a3e59d | |
parent | 213b0cd7a503a431d0a1bd78b00065f5508de345 (diff) | |
download | brdo-1fb7148854a866cf01112abf49a9c910bb281951.tar.gz brdo-1fb7148854a866cf01112abf49a9c910bb281951.tar.bz2 |
#100350 by dvessel. Adda missing <p> tag.
-rw-r--r-- | modules/book/book.module | 2 |
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>'; } } |