summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-12 21:54:16 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-12 21:54:16 +0000
commite8de9721d83489a836f3d74f982f751d358fbc9e (patch)
tree31f8e3f7d10a0020778025e82fb6f333cfbc6306 /index.php
parentc629c7bd09397c315487bf0486af2c497a742d44 (diff)
downloadbrdo-e8de9721d83489a836f3d74f982f751d358fbc9e.tar.gz
brdo-e8de9721d83489a836f3d74f982f751d358fbc9e.tar.bz2
- Added missing print statements. Patch #144 by CodeMonkeyX.
Diffstat (limited to 'index.php')
-rw-r--r--index.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/index.php b/index.php
index b4834e96a..f75d50b7a 100644
--- a/index.php
+++ b/index.php
@@ -14,14 +14,14 @@ if (menu_active_handler_exists()) {
array_pop($breadcrumb);
$title = menu_get_active_title();
- theme("header");
- theme("breadcrumb", $breadcrumb);
+ print theme("header");
+ print theme("breadcrumb", $breadcrumb);
if ($help = menu_get_active_help()) {
$contents = "<small>$help</small><hr />";
}
$contents .= menu_execute_active_handler();
- theme("box", $title, $contents);
- theme("footer");
+ print theme("box", $title, $contents);
+ print theme("footer");
}
else {
$mod = arg(0);
@@ -34,8 +34,8 @@ else {
module_invoke(variable_get("site_frontpage", "node"), "page");
}
else {
- theme("header");
- theme("footer");
+ print theme("header");
+ print theme("footer");
}
}
}