From 307b61ad625956e478c16f406061c9751baa928a Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Fri, 11 Oct 2024 14:42:25 +0200 Subject: i18n fixes --- src/application/actions/lookupuser/get.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/application/actions/lookupuser') diff --git a/src/application/actions/lookupuser/get.php b/src/application/actions/lookupuser/get.php index ca6c6f3..74143f4 100644 --- a/src/application/actions/lookupuser/get.php +++ b/src/application/actions/lookupuser/get.php @@ -2,7 +2,7 @@ use mystic\forum\orm\User; -$userHandle = $_GET["handle"] ?? throw new Exception("Missing handle"); +$userHandle = $_GET["handle"] ?? throw new Exception(__("Missing handle")); $user = new User(); $user->name = $userHandle; -- cgit v1.2.3