From bdf019b33260fb6e7a994b7a7585bc56a9c1081e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 30 Apr 2012 21:14:25 +0200 Subject: [PATCH] Adding language item for IP-Address --- file/lib/system/chat/command/commands/Info.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file/lib/system/chat/command/commands/Info.class.php b/file/lib/system/chat/command/commands/Info.class.php index 52f8264..c387b6f 100644 --- a/file/lib/system/chat/command/commands/Info.class.php +++ b/file/lib/system/chat/command/commands/Info.class.php @@ -47,7 +47,7 @@ public function __construct(\wcf\system\chat\command\CommandHandler $commandHand $session = $this->fetchSession($user); if ($session) { // TODO: Check permission - $this->lines['IP_ADDRESS'] = $session->ipAddress; + $this->lines[WCF::getLanguage()->get('wcf.user.ipAddress')] = $session->ipAddress; } $this->didInit();