diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-09-18 14:49:19 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-09-18 14:49:19 +0000 |
commit | 951f793daeb358eace97cdd0b1c321766da55d48 (patch) | |
tree | 37ed80ac95e82e70ea9560ae3256d53fb423801a /phpBB/viewtopic.php | |
parent | 36e99af959799eab6610fc6f3ca0e2c76ba4020f (diff) | |
download | forums-951f793daeb358eace97cdd0b1c321766da55d48.tar forums-951f793daeb358eace97cdd0b1c321766da55d48.tar.gz forums-951f793daeb358eace97cdd0b1c321766da55d48.tar.bz2 forums-951f793daeb358eace97cdd0b1c321766da55d48.tar.xz forums-951f793daeb358eace97cdd0b1c321766da55d48.zip |
some fixes. :P
- language authors may review their email template files...
git-svn-id: file:///svn/phpbb/trunk@8092 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index e608baadd8..4f67ba717f 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1040,7 +1040,7 @@ while ($row = $db->sql_fetchrow($result)) '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=' . $row['user_yim'] . '&.src=pg' : '', + '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", 'search_author=' . urlencode($row['username']) .'&showresults=posts') : '', ); |