diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-17 20:35:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-17 20:35:48 +0000 |
commit | 3d73a48edcf62bed0033fcea1aebcedb23e7c197 (patch) | |
tree | 88257dc7dcfb497e8223db6cf77b0daab05911c0 /search.php | |
parent | 03c06a86ebb9521f0a81343e1648a87c5ea9247f (diff) | |
download | brdo-3d73a48edcf62bed0033fcea1aebcedb23e7c197.tar.gz brdo-3d73a48edcf62bed0033fcea1aebcedb23e7c197.tar.bz2 |
- Merged "system settings" and "module settings" into one page. IMHO
it wasn't a good idea to split them up in first place, and it turned
out to be quite hard to decide where to put some variables.
Also moved some variables around and even renamed a few variables
while doing so.
- Added a page_header() and page_footer() to all top-level .php pages.
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/search.php b/search.php index 59b5aace1..bfd5e60c3 100644 --- a/search.php +++ b/search.php @@ -2,6 +2,8 @@ include_once "includes/common.inc"; +page_header(); + function find_module($name) { global $options, $type; if (module_hook($name, "search")) $options .= "<OPTION VALUE=\"$name\"". ($name == $type ? " SELECTED" : "") .">$name</OPTION>\n"; @@ -22,4 +24,6 @@ $theme->box(t("Search"), $search); $theme->box(t("Result"), $output); $theme->footer(); +page_footer(); + ?>
\ No newline at end of file |