aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-04-05 00:31:42 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-04-05 00:31:42 +0200
commit7074d19c4087fab0e81a31bd806724d7eac7ef87 (patch)
treef41c235714daede352248fa05ba45578ac9d2f33 /phpBB/viewtopic.php
parentebc338b9f3b75b758f55dc5a9a2300e8c154c74f (diff)
parentdf622a1fab35f4b654f48237799d2fa4164dc3be (diff)
downloadforums-7074d19c4087fab0e81a31bd806724d7eac7ef87.tar
forums-7074d19c4087fab0e81a31bd806724d7eac7ef87.tar.gz
forums-7074d19c4087fab0e81a31bd806724d7eac7ef87.tar.bz2
forums-7074d19c4087fab0e81a31bd806724d7eac7ef87.tar.xz
forums-7074d19c4087fab0e81a31bd806724d7eac7ef87.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/10121] Fix missing urlencode() for ICQ-number in viewtopic.php [ticket/10121] Fix ICQ profile link, leading to a dead web-messenger.
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index f22d602bc6..6c188eeee3 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1157,7 +1157,7 @@ while ($row = $db->sql_fetchrow($result))
if (!empty($row['user_icq']))
{
- $user_cache[$poster_id]['icq'] = 'http://www.icq.com/people/webmsg.php?to=' . $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'] . '&amp;img=5" width="18" height="18" alt="" />';
}
else