summaryrefslogtreecommitdiff
path: root/modules/profile/profile.module
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/profile/profile.module
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/profile/profile.module')
-rw-r--r--modules/profile/profile.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
index 215a57df9..b91eb5d29 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -66,8 +66,8 @@ function profile_settings() {
$profile_required_fields = variable_get("profile_required_fields", array());
$profile_register_fields = variable_get("profile_register_fields", array());
- $header = array (t("field"), t("enable"), t("public"), t("required"), t("show in registration form"));
- $i=0;
+ $header = array(t("field"), t("enable"), t("public"), t("required"), t("show in registration form"));
+ $i = 0;
foreach ($profile_fields as $key => $field) {
$row[$i][] = $field[1];
$row[$i][] = form_checkbox("", "profile_private_fields][", $key, in_array($key, $profile_private_fields));