diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-15 15:17:23 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-15 15:17:23 +0000 |
commit | 5c40037c8e2649201880cf9265c322075d18303b (patch) | |
tree | b1d3003eb99e5094a126873d3e8ebdd6ec28e366 /modules/book.module | |
parent | 6ddeae9f5c4c56362fde04c54f5091a604b78955 (diff) | |
download | brdo-5c40037c8e2649201880cf9265c322075d18303b.tar.gz brdo-5c40037c8e2649201880cf9265c322075d18303b.tar.bz2 |
1) Bugfix: changed INNER JOIN to LEFT JOIN to make forum topics with no comments show on the topic overview page.
2) Beautified the forum module views; rewritten to use the table() rendering functions, X HTML-ified the emitted code, added additional CSS tags, and removed hard-coded markup. This improves themeabality; it should be able to mimic the view and color scheme of, say, http://www.phpbb.com/.
3) Reorganized forms and links (interactive elements) to improve usability. Also ensured that the link names and page titles match.
4) Temporary removed container functionality: this simplified the work and eliminated some usability issues.
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book.module b/modules/book.module index 7deaccb12..e8f672cbf 100644 --- a/modules/book.module +++ b/modules/book.module @@ -417,7 +417,7 @@ function book_view($node, $main = 0) { } $output .= "<div class=\"book\">"; - $output .= "<div class=\"location\">". implode($trail, " » ") ."</div><hr />"; + $output .= "<div class=\"path\">". implode($trail, " » ") ."</div>"; $output .= "<div class=\"title\">$node->title</div>"; $output .= "<div class=\"last-updated\">". t("Last updated by %u on %d", array("%u" => format_name($node), "%d" => format_date($node->changed))) ."</div>"; |