mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 08:17:47 +02:00
[ticket/11201] Revert WLM dropping because it is still used in China.
Windows Live Messenger is still in use in china which accounts for ~20% of world population. Revert WLM dropping which has been merged under the assumption that WLM data and features are completely useless. This commit reverts commits -460470229d
-9affd6f7e7
which have been merged byd59431691c
. PHPBB3-11201
This commit is contained in:
@@ -617,6 +617,7 @@ $template->assign_vars(array(
|
||||
'WWW_IMG' => $user->img('icon_contact_www', 'VISIT_WEBSITE'),
|
||||
'ICQ_IMG' => $user->img('icon_contact_icq', 'ICQ'),
|
||||
'AIM_IMG' => $user->img('icon_contact_aim', 'AIM'),
|
||||
'MSN_IMG' => $user->img('icon_contact_msnm', 'MSNM'),
|
||||
'YIM_IMG' => $user->img('icon_contact_yahoo', 'YIM'),
|
||||
'JABBER_IMG' => $user->img('icon_contact_jabber', 'JABBER') ,
|
||||
'REPORT_IMG' => $user->img('icon_post_report', 'REPORT_POST'),
|
||||
@@ -1094,6 +1095,7 @@ while ($row = $db->sql_fetchrow($result))
|
||||
'icq_status_img' => '',
|
||||
'icq' => '',
|
||||
'aim' => '',
|
||||
'msn' => '',
|
||||
'yim' => '',
|
||||
'jabber' => '',
|
||||
'search' => '',
|
||||
@@ -1161,6 +1163,7 @@ while ($row = $db->sql_fetchrow($result))
|
||||
'profile' => append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=viewprofile&u=$poster_id"),
|
||||
'www' => $row['user_website'],
|
||||
'aim' => ($row['user_aim'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=aim&u=$poster_id") : '',
|
||||
'msn' => ($row['user_msnm'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=msnm&u=$poster_id") : '',
|
||||
'yim' => ($row['user_yim']) ? 'http://edit.yahoo.com/config/send_webmesg?.target=' . urlencode($row['user_yim']) . '&.src=pg' : '',
|
||||
'jabber' => ($row['user_jabber'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=jabber&u=$poster_id") : '',
|
||||
'search' => ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id=$poster_id&sr=posts") : '',
|
||||
@@ -1582,6 +1585,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
|
||||
'U_WWW' => $user_cache[$poster_id]['www'],
|
||||
'U_ICQ' => $user_cache[$poster_id]['icq'],
|
||||
'U_AIM' => $user_cache[$poster_id]['aim'],
|
||||
'U_MSN' => $user_cache[$poster_id]['msn'],
|
||||
'U_YIM' => $user_cache[$poster_id]['yim'],
|
||||
'U_JABBER' => $user_cache[$poster_id]['jabber'],
|
||||
|
||||
|
Reference in New Issue
Block a user