Upgrade to 4 Beta
In 3.10 this module's position is footer
and in 4, it is status
.
Version should be displayed in the upper right corner.
No version is displayed.
Labels |
Added:
?
|
I guess this can be solved by an sql update.
Yes, if the module can be clearly identified in a WHERE
clause (what I think should be the case). Shall I try to make a PR?
@Quy Would following be sufficient?
UPDATE `#__modules` SET `position`='status' WHERE `module`='mod_version' AND `client_id`=1;
Or should we also include the old position in the condition in case someone has published another mod_version somewhere else?
UPDATE `#__modules` SET `position`='status' WHERE `module`='mod_version' AND `client_id`=1 AND `position`='footer';
Or do we need to restrict it even more?
imho, if someone has set the mod_version in another position, it may anyway not fit to Atum.
Therefore I am rather in favor of
UPDATE `#__modules` SET `position`='status' WHERE `module`='mod_version' AND `client_id`=1;
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2020-08-16 11:49:45 |
Closed_By | ⇒ | richard67 |
I guess this can be solved by an sql update.