summaryrefslogtreecommitdiff
path: root/modules/path.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/path.module')
-rw-r--r--modules/path.module8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/path.module b/modules/path.module
index 9a8ea9ff0..1d66bd366 100644
--- a/modules/path.module
+++ b/modules/path.module
@@ -38,10 +38,14 @@ function path_admin() {
$output .= path_overview();
}
- return $output;
+ print theme("header");
+ print $output;
+ print theme("footer");
}
else {
- return message_access();
+ print theme("header");
+ print message_access();
+ print theme("footer");
}
}