### Eclipse Workspace Patch 1.0 #P dseven Index: modules/profile/profile.module =================================================================== --- modules/profile/profile.module (revision 1490) +++ modules/profile/profile.module (working copy) @@ -287,6 +287,7 @@ case 'checkbox': return $browse ? l($field->title, 'profile/' . $field->name) : check_plain($field->title); case 'url': + $value = substr($value,0,7) !== 'http://' ? 'http://' . $value : $value; return '' . check_plain($value) . ''; case 'date': $format = substr(variable_get('date_format_short', 'm/d/Y - H:i'), 0, 5);