Skip to content

Commit c2f96a1

Browse files
committed
AC-2653: Fix an admin custom URL functionality
1 parent 9395e68 commit c2f96a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/code/Magento/Security/Model/AdminSessionsManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ protected function createNewSession()
305305
$user = $this->authSession->getUser();
306306
if (null === $user) {
307307
$this->processLogout();
308-
throw new LocalizedException(__('User is not found'));
308+
throw new LocalizedException(__('User not found'));
309309
}
310310

311311
$adminSessionInfo = $this->adminSessionInfoFactory

app/code/Magento/Security/i18n/en_US.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ None,None
2929
"""%1"" must be later than the current date.","""%1"" must be later than the current date."
3030
"User Expiration","User Expiration"
3131
"""%1"" is not a valid date.","""%1"" is not a valid date."
32+
"User not found","User not found"

0 commit comments

Comments
 (0)