From 45a33ab0ef7583ba54a4257e3229f5d1c3564e97 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 16 Jul 2019 11:58:06 +0200 Subject: [PATCH] Remove IP address truncation in usersOnlineList.tpl This partly backports the changes in #2768. See the previous discussion here: https://github.com/WoltLab/WCF/pull/2768#discussion_r230306321 and the bug report here: https://community.woltlab.com/thread/277584-ipv6-wird-in-benutzer-online-anzeige-gek%C3%BCrzt/ --- com.woltlab.wcf/templates/usersOnlineList.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.woltlab.wcf/templates/usersOnlineList.tpl b/com.woltlab.wcf/templates/usersOnlineList.tpl index fb8118d399..e31b97940c 100644 --- a/com.woltlab.wcf/templates/usersOnlineList.tpl +++ b/com.woltlab.wcf/templates/usersOnlineList.tpl @@ -94,7 +94,7 @@ {if $__wcf->session->getPermission('admin.user.canViewIpAddress')}
{lang}wcf.user.usersOnline.ipAddress{/lang}
-
{$user->getFormattedIPAddress()|truncate:30}
+
{$user->getFormattedIPAddress()}
{if !$user->spiderID}
{lang}wcf.user.usersOnline.userAgent{/lang}
-- 2.20.1