diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-29 20:19:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-29 20:19:37 +0000 |
commit | a92bfba70710b21b50d981c12537176d91722588 (patch) | |
tree | 703c679adff7711842cea9374e9eb9174f9916dc | |
parent | ec5aff0a0b8ea754a13ed5cbb58b67d40baad557 (diff) | |
download | brdo-a92bfba70710b21b50d981c12537176d91722588.tar.gz brdo-a92bfba70710b21b50d981c12537176d91722588.tar.bz2 |
- Fixed bug #1336: http://drupal.org/node/view/1336. Thanks Marky.
-rw-r--r-- | modules/profile.module | 2 | ||||
-rw-r--r-- | modules/profile/profile.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile.module b/modules/profile.module index c97deadbb..c5d044290 100644 --- a/modules/profile.module +++ b/modules/profile.module @@ -48,7 +48,7 @@ function profile_settings() { $profile_public_fields = variable_get("profile_public_fields", array()); $profile_private_fields = variable_get("profile_private_fields", array()); - $profile_required_fields = variable_get("profile_require_fields", array()); + $profile_required_fields = variable_get("profile_required_fields", array()); $profile_register_fields = variable_get("profile_register_fields", array()); $output = "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">\n"; diff --git a/modules/profile/profile.module b/modules/profile/profile.module index c97deadbb..c5d044290 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -48,7 +48,7 @@ function profile_settings() { $profile_public_fields = variable_get("profile_public_fields", array()); $profile_private_fields = variable_get("profile_private_fields", array()); - $profile_required_fields = variable_get("profile_require_fields", array()); + $profile_required_fields = variable_get("profile_required_fields", array()); $profile_register_fields = variable_get("profile_register_fields", array()); $output = "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">\n"; |