Go to 'Forgot your username?' and request your username.
Go to 'User Action Logs' and there you will see the 'name' of the user and NOT the 'username'.
This is inconsistent.
'User Action Logs' let's see the 'username'
'User Action Logs' let's see the 'name'
Non relevant
Same issue for [4.0]
file:\joomla\plugins\actionlog\joomla\joomla.php, line 929...
Code
$message = array(
'action' => 'remind',
'type' => 'PLG_ACTIONLOG_JOOMLA_TYPE_USER',
'id' => $user->id,
'title' => $user->name,
'itemlink' => 'index.php?option=com_users&task=user.edit&id=' . $user->id,
'userid' => $user->id,
'username' => $user->name,
'accountlink' => 'index.php?option=com_users&task=user.edit&id=' . $user->id,
);
Should be:
$message = array(
'action' => 'remind',
'type' => 'PLG_ACTIONLOG_JOOMLA_TYPE_USER',
'id' => $user->id,
'title' => $user->username,
'itemlink' => 'index.php?option=com_users&task=user.edit&id=' . $user->id,
'userid' => $user->id,
'username' => $user->username,
'accountlink' => 'index.php?option=com_users&task=user.edit&id=' . $user->id,
);
Labels |
Removed:
?
|
Labels |
Added:
No Code Attached Yet
|
Title |
|
Title |
|
That would be a big change that would need to be applied in a lot of places
Yes, I know. It was a conceptual mistake. Something like client = 1 means admin and 0 means site (or vice versa?). :)
and a concept that has existed for 17 years
Joomla 4 already uses the proposed code and as j3 wont be getting any more changes this should be closed
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2022-08-05 08:17:32 |
Closed_By | ⇒ | sandewt |
Thks
Which remembers me that wanted to suggest a change in the language.
The words "username" and "user" are confusing - maybe only for me? But this is such a typical case where maybe it was not clear that user is not a user but an account name.
What do you think about changing the "user" to "account"?
@brianteeman
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/35821.