summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-09-15 15:58:20 +0000
committerDries Buytaert <dries@buytaert.net>2003-09-15 15:58:20 +0000
commitd9cb4522bd0f445eef49316a5c9dd798e2803754 (patch)
tree8bfbeb2c292df21f15252ae47c631ec026934c13 /includes/theme.inc
parent7e60456ca98e9faa12fcf2ea56ee57f31c6450af (diff)
downloadbrdo-d9cb4522bd0f445eef49316a5c9dd798e2803754.tar.gz
brdo-d9cb4522bd0f445eef49316a5c9dd798e2803754.tar.bz2
- Book module improvements. This commit changes the behavior of the "view"
hook. See mailing list for details; search for a mail with the subject: '[IMPORTANT] behavior of "view" hook changed'. Modified patch from Nick.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 7e6f60212..b087b8f83 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -41,8 +41,8 @@ class BaseTheme {
return "misc/$name";
}
- function path($path) {
- print "<div class=\"path\">". implode($path, " &raquo; ") ."</div>";
+ function breadcrumb($trail) {
+ print "<div class=\"breadcrumb\">". implode($trail, " &raquo; ") ."</div>";
}
function node($node, $main) {