diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-29 10:03:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-29 10:03:21 +0000 |
commit | 828f36cdf1ebbf2580eb00fdfbf55701e4f86156 (patch) | |
tree | 58ee8ca1b2c9c399ac474e419d2fc98e3cb1b160 /includes/theme.inc | |
parent | 95f92686e492f48cc230bb5f4a83568bce66e0b8 (diff) | |
download | brdo-828f36cdf1ebbf2580eb00fdfbf55701e4f86156.tar.gz brdo-828f36cdf1ebbf2580eb00fdfbf55701e4f86156.tar.bz2 |
- Addition: added a new, tiny forum module: I will use this forum
module to develop and test the permission system along with the
regular nodes. And hopefully, this forum module will grow into
a very useable piece of code for drop.org.
Requires a new SQL table "forum", see 2.00-to-x.xx.sql.
- Removed 1 unused hook from page.module.
- Removed 1 unused function from comment.inc.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index dbeb5fab8..793824d06 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -14,14 +14,14 @@ function theme_init() { function theme_link($separator = " | ") { global $repository; - $links = array("<A HREF=\"index.php\">". t("home") ."</A>", - "<A HREF=\"search.php\">". t("search") ."</A>", - "<A HREF=\"submit.php\">". t("submit") ."</A>"); - if (is_array($repository[diary])) - $links[] = "<A HREF=\"module.php?mod=diary\">". t("diary") ."</A>"; + $links[] = "<A HREF=\"index.php\">". t("home") ."</A>"; + $links[] = "<A HREF=\"search.php\">". t("search") ."</A>"; + $links[] = "<A HREF=\"submit.php\">". t("submit") ."</A>"; + if ($repository[forum]) $links[] = "<A HREF=\"module.php?mod=forum\">".t("forum") ."</A>"; + if ($repository[diary]) $links[] = "<A HREF=\"module.php?mod=diary\">". t("diary") ."</A>"; $links[] = "<A HREF=\"account.php\">". t("account") ."</A>"; - if (is_array($repository[diary])) - $links[] = "<A HREF=\"module.php?mod=book\">". t("handbook") ."</A>"; + if ($repository[book]) $links[] = "<A HREF=\"module.php?mod=book\">". t("handbook") ."</A>"; + return implode($separator, $links); } |