From cf5475a7e15529bd09659ad0577b83e70df52dbc Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 21 Feb 2006 08:41:42 +0000
Subject: [PATCH] - Patch #41509 by munga: setting profile field to hidden does
 not remove it from the user edit form. (Today's critical bugfix #2.)

---
 modules/profile.module         | 84 ++++++++++++++++++++++++++--------
 modules/profile/profile.module | 84 ++++++++++++++++++++++++++--------
 2 files changed, 132 insertions(+), 36 deletions(-)

diff --git a/modules/profile.module b/modules/profile.module
index 66596806a681..820cef69f4a5 100644
--- a/modules/profile.module
+++ b/modules/profile.module
@@ -340,14 +340,19 @@ function _profile_form_explanation($field) {
 }
 
 function profile_form_profile($edit, $user, $category) {
-
-  if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') {
-    $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+  if ($_GET['q'] == 'user/register') {
+    $result = db_query('SELECT * FROM {profile_fields} WHERE visibility != %d AND register = 1 ORDER BY category, weight', PROFILE_HIDDEN);
   }
-  else {
-    $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
-    // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+  elseif ($_GET['q'] == 'admin/user/create') {
+     $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+   }
+  elseif (user_access('administer users')) {
+     $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
   }
+  else {
+    $result = db_query("SELECT * FROM {profile_fields} WHERE visibility != %d AND LOWER(category) = LOWER('%s') ORDER BY weight", PROFILE_HIDDEN, $category);
+     // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+   }
 
   while ($field = db_fetch_object($result)) {
     $category = $field->category;
@@ -357,16 +362,41 @@ function profile_form_profile($edit, $user, $category) {
     switch ($field->type) {
       case 'textfield':
       case 'url':
-        $fields[$category][$field->name] = array('#type' => 'textfield', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#maxlength' => 255, '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'textfield',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#maxlength' => 255,
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'textarea':
-        $fields[$category][$field->name] = array('#type' => 'textarea', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'textarea',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'list':
-        $fields[$category][$field->name] = array('#type' => 'textarea', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'textarea',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'checkbox':
-        $fields[$category][$field->name] = array('#type' => 'checkbox', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'checkbox',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'selection':
         $options = array('--');
@@ -376,10 +406,23 @@ function profile_form_profile($edit, $user, $category) {
             $options[$line] = $line;
           }
         }
-        $fields[$category][$field->name] = array('#type' => 'select', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#options' => $options, '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'select',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#options' => $options,
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'date':
-        $fields[$category][$field->name] = array('#type' => 'date', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'date',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
     }
   }
@@ -399,14 +442,19 @@ function _profile_update_user_fields($fields, $account) {
 }
 
 function profile_validate_profile($edit, $category) {
-
-  if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') {
-    $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+  if ($_GET['q'] == 'user/register') {
+    $result = db_query('SELECT * FROM {profile_fields} WHERE visibility != %d AND register = 1 ORDER BY category, weight', PROFILE_HIDDEN);
   }
-  else {
-    $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
-    // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+  elseif ($_GET['q'] == 'admin/user/create') {
+     $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+   }
+  elseif (user_access('administer users')) {
+     $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
   }
+  else {
+    $result = db_query("SELECT * FROM {profile_fields} WHERE visibility != %d AND LOWER(category) = LOWER('%s') ORDER BY weight", PROFILE_HIDDEN, $category);
+     // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+   }
 
   while ($field = db_fetch_object($result)) {
     if ($edit[$field->name]) {
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
index 66596806a681..820cef69f4a5 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -340,14 +340,19 @@ function _profile_form_explanation($field) {
 }
 
 function profile_form_profile($edit, $user, $category) {
-
-  if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') {
-    $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+  if ($_GET['q'] == 'user/register') {
+    $result = db_query('SELECT * FROM {profile_fields} WHERE visibility != %d AND register = 1 ORDER BY category, weight', PROFILE_HIDDEN);
   }
-  else {
-    $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
-    // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+  elseif ($_GET['q'] == 'admin/user/create') {
+     $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+   }
+  elseif (user_access('administer users')) {
+     $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
   }
+  else {
+    $result = db_query("SELECT * FROM {profile_fields} WHERE visibility != %d AND LOWER(category) = LOWER('%s') ORDER BY weight", PROFILE_HIDDEN, $category);
+     // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+   }
 
   while ($field = db_fetch_object($result)) {
     $category = $field->category;
@@ -357,16 +362,41 @@ function profile_form_profile($edit, $user, $category) {
     switch ($field->type) {
       case 'textfield':
       case 'url':
-        $fields[$category][$field->name] = array('#type' => 'textfield', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#maxlength' => 255, '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'textfield',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#maxlength' => 255,
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'textarea':
-        $fields[$category][$field->name] = array('#type' => 'textarea', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'textarea',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'list':
-        $fields[$category][$field->name] = array('#type' => 'textarea', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'textarea',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'checkbox':
-        $fields[$category][$field->name] = array('#type' => 'checkbox', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'checkbox',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'selection':
         $options = array('--');
@@ -376,10 +406,23 @@ function profile_form_profile($edit, $user, $category) {
             $options[$line] = $line;
           }
         }
-        $fields[$category][$field->name] = array('#type' => 'select', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#options' => $options, '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'select',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#options' => $options,
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
       case 'date':
-        $fields[$category][$field->name] = array('#type' => 'date', '#title' => check_plain($field->title), '#default_value' => $edit[$field->name], '#description' => _profile_form_explanation($field), '#required' => $field->required);
+        $fields[$category][$field->name] = array(
+          '#type' => 'date',
+          '#title' => check_plain($field->title),
+          '#default_value' => $edit[$field->name],
+          '#description' => _profile_form_explanation($field),
+          '#required' => $field->required
+        );
         break;
     }
   }
@@ -399,14 +442,19 @@ function _profile_update_user_fields($fields, $account) {
 }
 
 function profile_validate_profile($edit, $category) {
-
-  if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') {
-    $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+  if ($_GET['q'] == 'user/register') {
+    $result = db_query('SELECT * FROM {profile_fields} WHERE visibility != %d AND register = 1 ORDER BY category, weight', PROFILE_HIDDEN);
   }
-  else {
-    $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
-    // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+  elseif ($_GET['q'] == 'admin/user/create') {
+     $result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
+   }
+  elseif (user_access('administer users')) {
+     $result = db_query("SELECT * FROM {profile_fields} WHERE LOWER(category) = LOWER('%s') ORDER BY weight", $category);
   }
+  else {
+    $result = db_query("SELECT * FROM {profile_fields} WHERE visibility != %d AND LOWER(category) = LOWER('%s') ORDER BY weight", PROFILE_HIDDEN, $category);
+     // We use LOWER('%s') instead of PHP's strtolower() to avoid UTF-8 conversion issues.
+   }
 
   while ($field = db_fetch_object($result)) {
     if ($edit[$field->name]) {
-- 
GitLab