diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-05-20 07:34:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-05-20 07:34:38 +0000 |
commit | f3c875717910918574aa1310de176e0c44062199 (patch) | |
tree | 6ea8a302644d3e712263cfd61fd2163dee2eddc0 /modules/system.module | |
parent | d895ef8c40a91380f8f484b41b9df11889e1380b (diff) | |
download | brdo-f3c875717910918574aa1310de176e0c44062199.tar.gz brdo-f3c875717910918574aa1310de176e0c44062199.tar.bz2 |
- Ran the code through 'scripts/code-clean.sh': removed trailing whitespace
(and possibly tabs).
Diffstat (limited to 'modules/system.module')
-rw-r--r-- | modules/system.module | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/system.module b/modules/system.module index 3e1c35ab1..a1fe0c515 100644 --- a/modules/system.module +++ b/modules/system.module @@ -37,7 +37,7 @@ function system_link($type) { function system_view_options() { global $conf, $cmodes, $corder; - + // general settings: $output .= "<h3>General settings</h3>\n"; $output .= form_textfield("Name", "site_name", variable_get("site_name", "drupal"), 55, 55, "The name of this website."); @@ -124,12 +124,12 @@ function system_view($type) { $form = system_view_filters(); break; default: - foreach (module_list() as $name) { - if (module_hook($name, "conf_options")) { - $links[] = la($name, array("mod" => "system"), $name); - } - } - + foreach (module_list() as $name) { + if (module_hook($name, "conf_options")) { + $links[] = la($name, array("mod" => "system"), $name); + } + } + $output = "<small>". implode(" :: ", $links) ."</small><hr />"; $form = system_view_options(); } |