There is a message "User xxx updated Joomla from 4.3.4 to 4.4.0"
Before the correct message, an additional message is thrown: "User xxx updated Joomla from Unknown to 4.4.0"
Joomla 4.4.0
PHP 8.2.2
MySQL 8.0.33
Labels |
Added:
No Code Attached Yet
|
Labels |
Added:
bug
|
Title |
|
Title |
|
This happens because the event onJoomlaAfterUpdate
triggered twice in UpdateModel.
First time without version
And the action log store log for both.
The first trigger should be removed, however I am not sure what backward compatibility effect it can have on 3rd plugins.
It for ALL Joomla versions: 3.x, 4.x, 5.x
Hmm should be ok to remove the first one. Only the user state file is deleted before the second event is called, don't know if this is/should be used by 3rd party at all.
Confirmed