Category | ⇒ | Administration Language & Strings Front End com_users Plugins |
Title |
|
Labels |
Added:
?
?
|
Don't work for me.
echo ("view = " . $this->app->input->get('view') );
Exit;
give me "login" not reset, remind or registration
Status | New | ⇒ | Discussion |
I tried again but I still have the same message "User xxx registered for an account", for forgot your username as well as password.
Also, when creating an account, the actions log mentions the user consented to the Terms & Conditions but not to the privacy policy. Even if the privacy consent is stored in the Consents view, wouldn't it make sense to have it also displayed in the Action Logs?
@alikon I think you can use $task to determine the action, it's more reliable than $view
$task = JFactory::getApplication()->input->get->getCmd('task');
if ($task == 'remind.remind')
{
// Log require remind username action
}
elseif($task == 'reset.request')
{
// Log require reset password action
}
elseif($task == 'reset.complete')
{
// Log reset password action
}
With that said, reset password will require 2 separate action logs: One for reset request and one for actual reset password action.
@Sandra97 For logging user consented to the Terms & Conditions action, would you mind open a separate issue for it?
Sure @joomdonation
so now we have action-logging: for reset request and for reset complete, (using task
) as suggested by @joomdonation
Tested successfully on remind, reset, registration.
Can't find the usual button to mark the test completed
Tested successfully on remind, reset, registration.
Can't find the usual button to mark the test completed
please re-test as a new event onUserAfterRemind
has been added as requested
Tested successfully on 3.9.0 beta2 with the commits above
RTC, recent commits are cs only
Status | Discussion | ⇒ | Ready to Commit |
RTC
Status | Ready to Commit | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-09-22 15:13:26 |
Closed_By | ⇒ | mbabker | |
Labels |
Added:
?
|
I applied the patch but I still get "User xxx registered for an account" (but I'm a terrible tester)