Merge pull request #1457 from wandrien/edit-user-title-fix

Display the user name in the title of page /admin/edit-user/$username
This commit is contained in:
Diego Najar 2023-01-04 15:43:23 +01:00 committed by GitHub
commit 6cce49f0be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,4 +26,4 @@ try {
}
// HTML <title>
$layout['title'] = $L->g('Edit user') . ' - ' . $layout['title'];
$layout['title'] = $L->g('Edit user') . ' [ ' . $username . ' ] ' . ' - ' . $layout['title'];