diff options
Diffstat (limited to 'src/application/actions/lookupuser/get.php')
-rw-r--r-- | src/application/actions/lookupuser/get.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; |