mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10121] Fix missing urlencode() for ICQ-number in viewtopic.php
PHPBB3-10121
This commit is contained in:
parent
59d75c1ae6
commit
f96cb431a9
1 changed files with 1 additions and 1 deletions
|
@ -1157,7 +1157,7 @@ while ($row = $db->sql_fetchrow($result))
|
||||||
|
|
||||||
if (!empty($row['user_icq']))
|
if (!empty($row['user_icq']))
|
||||||
{
|
{
|
||||||
$user_cache[$poster_id]['icq'] = 'http://www.icq.com/people/' . $row['user_icq'] . '/';
|
$user_cache[$poster_id]['icq'] = 'http://www.icq.com/people/' . urlencode($row['user_icq']) . '/';
|
||||||
$user_cache[$poster_id]['icq_status_img'] = '<img src="http://web.icq.com/whitepages/online?icq=' . $row['user_icq'] . '&img=5" width="18" height="18" alt="" />';
|
$user_cache[$poster_id]['icq_status_img'] = '<img src="http://web.icq.com/whitepages/online?icq=' . $row['user_icq'] . '&img=5" width="18" height="18" alt="" />';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue