Index: realname.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/realname/realname.module,v retrieving revision 1.4.4.57 diff -u -p -r1.4.4.57 realname.module --- realname.module 13 Oct 2009 17:48:06 -0000 1.4.4.57 +++ realname.module 19 Feb 2010 23:38:52 -0000 @@ -760,7 +760,7 @@ function _realname_make_name(&$account) drupal_set_message(t('The profile load function (!module) was not found.', array('!module' => $load_func)), 'error'); return $account->name; } - module_invoke($module, 'load_profile', $account, $type); + $load_func($account, $type); if ($profile_privacy) { profile_privacy_user('load', $edit, $account); }