Display the user name in the title of page /admin/edit-user/$username

Display the user name in the title of page `/admin/edit-user/$username`, in the same way as it's implemented for `/admin/edit-category/$category`.
This commit is contained in:
Vadim Ushakov 2022-09-19 15:40:29 +07:00
parent 55d3b162bf
commit 387e62ea7e

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'];