diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-02-26 19:46:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-02-26 19:46:13 +0000 |
commit | f63bb3a3f134addaa42e5ccb19eed8f27c229644 (patch) | |
tree | 0d62f84bfcb0d0e7c3de255c59ff358c5d451637 | |
parent | 58d9b02e3e9673f0f4447446f8f1736bd9233e31 (diff) | |
download | brdo-f63bb3a3f134addaa42e5ccb19eed8f27c229644.tar.gz brdo-f63bb3a3f134addaa42e5ccb19eed8f27c229644.tar.bz2 |
- Patch #38578 by Zen: field->id -> field->fid.
-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 a9ea4d5b0..8d9655657 100644 --- a/modules/profile.module +++ b/modules/profile.module @@ -201,7 +201,7 @@ function profile_browse() { drupal_set_title($title); return $output; } - else if ($name && !$field->id) { + else if ($name && !$field->fid) { drupal_not_found(); } else { diff --git a/modules/profile/profile.module b/modules/profile/profile.module index a9ea4d5b0..8d9655657 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -201,7 +201,7 @@ function profile_browse() { drupal_set_title($title); return $output; } - else if ($name && !$field->id) { + else if ($name && !$field->fid) { drupal_not_found(); } else { |