diff --git a/main/social/data_personal.inc.php b/main/social/data_personal.inc.php
index e0929ae397..502ab34d48 100755
--- a/main/social/data_personal.inc.php
+++ b/main/social/data_personal.inc.php
@@ -98,34 +98,31 @@ $language_variable=api_xml_http_response_encode(get_lang('PersonalData'));
if (api_get_setting('allow_social_tool')=='true' && api_get_setting('allow_message_tool')=='true' && api_get_user_id()<>2 && api_get_user_id()<>0) {
echo ''.Display::return_icon('shared_profile.png',api_xml_http_response_encode(get_lang('ViewSharedProfile'))).' '.api_xml_http_response_encode(get_lang('ViewSharedProfile')).'';
}
- echo '';
- echo '
';
- echo '
';
- echo '
'.api_xml_http_response_encode(get_lang('UserName')).'
- '. api_xml_http_response_encode($user_info['username']).' ';
+ echo '';
+ echo '
';
+ echo '
';
+ echo '
- '.api_xml_http_response_encode(get_lang('UserName')).'
+ - '. api_xml_http_response_encode($user_info['username']).'
';
if (api_is_western_name_order()) {
- echo '
'.api_xml_http_response_encode(get_lang('FirstName')).'
-
'. api_xml_http_response_encode($user_info['firstname']).'';
- echo '
'.api_xml_http_response_encode(get_lang('LastName')).'
-
'. api_xml_http_response_encode($user_info['lastname']).'';
+ echo '
- '.api_xml_http_response_encode(get_lang('FirstName')).'
+ - '. api_xml_http_response_encode($user_info['firstname']).'
';
+ echo '
- '.api_xml_http_response_encode(get_lang('LastName')).'
+ - '. api_xml_http_response_encode($user_info['lastname']).'
';
} else {
- echo '
'.api_xml_http_response_encode(get_lang('LastName')).'
-
'. api_xml_http_response_encode($user_info['lastname']).'';
- echo '
'.api_xml_http_response_encode(get_lang('FirstName')).'
-
'. api_xml_http_response_encode($user_info['firstname']).'';
+ echo '
- '.api_xml_http_response_encode(get_lang('LastName')).'
- '. api_xml_http_response_encode($user_info['lastname']).'
';
+ echo '
- '.api_xml_http_response_encode(get_lang('FirstName')).'
- '. api_xml_http_response_encode($user_info['firstname']).'
';
}
- echo '
'.api_xml_http_response_encode(get_lang('OfficialCode')).'
-
'. api_xml_http_response_encode($user_info['official_code']).'';
- echo '
'.api_xml_http_response_encode(get_lang('Email')).'
-
'. api_xml_http_response_encode($user_info['email']).'';
- echo '
'.api_xml_http_response_encode(get_lang('Phone')).'
-
'. api_xml_http_response_encode($user_info['phone']).'';
+ echo '
- '.api_xml_http_response_encode(get_lang('OfficialCode')).'
+ - '. api_xml_http_response_encode($user_info['official_code']).'
';
+ echo '
- '.api_xml_http_response_encode(get_lang('Email')).'
+ - '. api_xml_http_response_encode($user_info['email']).'
';
+ echo '
- '.api_xml_http_response_encode(get_lang('Phone')).'
+ - '. api_xml_http_response_encode($user_info['phone']).'
';
echo '
';
-
echo '
';
- echo '
';
+ echo '
';
echo '

';
- echo '
';
+ echo '
';
/*if (api_get_setting('allow_message_tool')=='true') {
require_once api_get_path(LIBRARY_PATH).'message.lib.php';
$number_of_new_messages = MessageManager::get_new_messages();