summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2007-01-09 08:31:22 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2007-01-09 08:31:22 +0000
commit5c4d5386e27a9d3d82a5f6cfa086b1668b331d6c (patch)
tree62ef48f34e0d5f3c3de082eaadf75441b134b660
parent3e8a9d1905c3110a4e7ac18044f477c60b02e098 (diff)
downloadbrdo-5c4d5386e27a9d3d82a5f6cfa086b1668b331d6c.tar.gz
brdo-5c4d5386e27a9d3d82a5f6cfa086b1668b331d6c.tar.bz2
#107443 by webchick. Proper . placement.
-rw-r--r--modules/book/book.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index 8e22d7be4..1d07a5f5b 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -644,7 +644,7 @@ function book_export($type = 'html', $nid = 0) {
$node = db_fetch_object($node_result);
}
$depth = count(book_location($node)) + 1;
- $export_function = 'book_export_' . $type;
+ $export_function = 'book_export_'. $type;
if (function_exists($export_function)) {
print call_user_func($export_function, $nid, $depth);
@@ -706,7 +706,7 @@ function theme_book_export_html($title, $content) {
$html .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
$html .= '<base href="'. $base_url .'/" />' . "\n";
$html .= "<style type=\"text/css\">\n@import url(misc/print.css);\n</style>\n";
- $html .= "</head>\n<body>\n". $content . "\n</body>\n</html>\n";
+ $html .= "</head>\n<body>\n". $content ."\n</body>\n</html>\n";
return $html;
}
@@ -989,9 +989,9 @@ function book_help($section) {
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@book">Book page</a>.', array('@book' => 'http://drupal.org/handbook/modules/book/')) .'</p>';
return $output;
case 'admin/content/book':
- return '<p>'. t('The book module offers a means to organize content, authored by many users, in an online manual, outline or FAQ.'). '</p>';
+ return '<p>'. t('The book module offers a means to organize content, authored by many users, in an online manual, outline or FAQ.') .'</p>';
case 'admin/content/book/orphan':
- return '<p>'. t('Pages in a book are like a tree. As pages are edited, reorganized and removed, child pages might be left with no link to the rest of the book. Such pages are referred to as "orphan pages". On this page, administrators can review their books for orphans and reattach those pages as desired.'). '</p>';
+ return '<p>'. t('Pages in a book are like a tree. As pages are edited, reorganized and removed, child pages might be left with no link to the rest of the book. Such pages are referred to as "orphan pages". On this page, administrators can review their books for orphans and reattach those pages as desired.') .'</p>';
}
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'outline') {