diff options
author | Steve Clay <steve@mrclay.org> | 2012-10-25 06:52:23 -0700 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2012-10-25 06:52:23 -0700 |
commit | 5dc4e276e18f890b0ae03c472db8cc660fe5c13d (patch) | |
tree | 55027d428632898b30925c0c2f82517b0a6f2df6 /views | |
parent | 20ea048b510bfb2ae7eb5e26c8a07205887406e2 (diff) | |
parent | 2a01ffb27c6509f4b9e32675cf4386d3aae1c713 (diff) | |
download | elgg-5dc4e276e18f890b0ae03c472db8cc660fe5c13d.tar.gz elgg-5dc4e276e18f890b0ae03c472db8cc660fe5c13d.tar.bz2 |
Merge pull request #383 from jdalsem/#4858-bugs-in-profile-metadata
#4858 bugs in profile metadata
Diffstat (limited to 'views')
-rw-r--r-- | views/default/forms/profile/edit.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/views/default/forms/profile/edit.php b/views/default/forms/profile/edit.php index 222935344..9538b779e 100644 --- a/views/default/forms/profile/edit.php +++ b/views/default/forms/profile/edit.php @@ -18,7 +18,8 @@ if (is_array($profile_fields) && count($profile_fields) > 0) { foreach ($profile_fields as $shortname => $valtype) { $metadata = elgg_get_metadata(array( 'guid' => $vars['entity']->guid, - 'metadata_name' => $shortname + 'metadata_name' => $shortname, + 'limit' => false )); if ($metadata) { if (is_array($metadata)) { |