summaryrefslogtreecommitdiff
path: root/modules/profile/profile.module
diff options
context:
space:
mode:
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));