summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-05-20 07:34:38 +0000
committerDries Buytaert <dries@buytaert.net>2002-05-20 07:34:38 +0000
commitf3c875717910918574aa1310de176e0c44062199 (patch)
tree6ea8a302644d3e712263cfd61fd2163dee2eddc0 /modules/system/system.module
parentd895ef8c40a91380f8f484b41b9df11889e1380b (diff)
downloadbrdo-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/system.module')
-rw-r--r--modules/system/system.module14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 3e1c35ab1..a1fe0c515 100644
--- a/modules/system/system.module
+++ b/modules/system/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();
}