diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-15 15:58:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-15 15:58:20 +0000 |
commit | d9cb4522bd0f445eef49316a5c9dd798e2803754 (patch) | |
tree | 8bfbeb2c292df21f15252ae47c631ec026934c13 /includes/theme.inc | |
parent | 7e60456ca98e9faa12fcf2ea56ee57f31c6450af (diff) | |
download | brdo-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.inc | 4 |
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, " » ") ."</div>"; + function breadcrumb($trail) { + print "<div class=\"breadcrumb\">". implode($trail, " » ") ."</div>"; } function node($node, $main) { |