summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-28 10:47:33 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-28 10:47:33 +0000
commitbaaa21e1316354ada6d985a5b799ce17d6255590 (patch)
treedcd7d9a51ad26ff41e6633cca4b5a272ba72eab8 /modules/system
parent5c0cd3c03f956412c0b0e859d31a1ffe265ef1a1 (diff)
downloadbrdo-baaa21e1316354ada6d985a5b799ce17d6255590.tar.gz
brdo-baaa21e1316354ada6d985a5b799ce17d6255590.tar.bz2
- Tidied up some inconsistencies in the code: scripts/code-style.sh is your friend.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index af45d64f6..7baf4ecab 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -327,7 +327,7 @@ function system_listing($type, $directory, $required = array()) {
$row[] = array("data" => (in_array($filename, $throttle_required) ? form_hidden("throttle][$filename", 0) . t("required") : form_checkbox(NULL, "throttle][$filename", 1, $file->throttle, NULL, variable_get("throttle_enable", 0) ? NULL : array("disabled" => "disabled"))), "align" => "center");
}
else if ($type == "theme") {
- $row[] = array("data" => form_radio("","theme_default",$info->name,(variable_get("theme_default",0) == $info->name) ? 1 : 0), "align" => "center");
+ $row[] = array("data" => form_radio("", "theme_default", $info->name, (variable_get("theme_default",0) == $info->name) ? 1 : 0), "align" => "center");
}
$rows[] = $row;
}