diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-29 20:17:54 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-29 20:17:54 +0000 |
commit | 7e434bda73195ad81d728c97823c14c09383438d (patch) | |
tree | c9af7225b4f82b0abfd9403fee4b3f0e439caa6e /views/default/forms | |
parent | ce7eb8ee45b4222e9ea5e63ed6941f19239b969d (diff) | |
download | elgg-7e434bda73195ad81d728c97823c14c09383438d.tar.gz elgg-7e434bda73195ad81d728c97823c14c09383438d.tar.bz2 |
Fixes #2751 profile custom fields uses the config table now
git-svn-id: http://code.elgg.org/elgg/trunk@7754 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/forms')
-rw-r--r-- | views/default/forms/profile/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/forms/profile/edit.php b/views/default/forms/profile/edit.php index c9117c8e7..108e7f9f2 100644 --- a/views/default/forms/profile/edit.php +++ b/views/default/forms/profile/edit.php @@ -13,7 +13,7 @@ </p> <?php -$profile_fields = elgg_get_config('profile'); +$profile_fields = elgg_get_config('profile_fields'); if (is_array($profile_fields) && count($profile_fields) > 0) { foreach ($profile_fields as $shortname => $valtype) { $metadata = get_metadata_byname($vars['entity']->guid, $shortname); |