diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-02 17:58:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-02 17:58:47 +0000 |
commit | a4c84bbe3df42b51d8da86519109262c51a57915 (patch) | |
tree | 6f620b077390f5cd2e272961398cce50072e44b4 /modules/book/book.module | |
parent | 51976ac13489876d5dabb98a96dbbdc55a152ba0 (diff) | |
download | brdo-a4c84bbe3df42b51d8da86519109262c51a57915.tar.gz brdo-a4c84bbe3df42b51d8da86519109262c51a57915.tar.bz2 |
- Bugfix: made printer-friendly pages work. They were rendered but never
printed.
Diffstat (limited to 'modules/book/book.module')
-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 2763fb206..7cf8b99b3 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -643,7 +643,7 @@ function book_page() { theme("footer"); break; case "print": - return book_print(arg(2), $depth = 1); + print book_print(arg(2), $depth = 1); break; default: book_render(); |