diff options
Diffstat (limited to 'actions/profile/edit.php')
-rw-r--r-- | actions/profile/edit.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/profile/edit.php b/actions/profile/edit.php index 260f2aba9..e86053b07 100644 --- a/actions/profile/edit.php +++ b/actions/profile/edit.php @@ -74,7 +74,11 @@ if ($name) { // go through custom fields if (sizeof($input) > 0) { foreach ($input as $shortname => $value) { - remove_metadata($owner->guid, $shortname); + $options = array( + 'guid' => $owner->guid, + 'metadata_name' => $shortname + ); + elgg_delete_metadata($options); if (isset($accesslevel[$shortname])) { $access_id = (int) $accesslevel[$shortname]; } else { |