15 Nov 2019

Bug fixes

[PRESIDECMS-1734] - versionNavigator incorrectly shows "not latest" if only one version in history
[PRESIDECMS-1741] - Asset name change: when multiple versions of asset, the active version gets the wrong storage path

Additional notes

If you are effected by the Asset Manager renaming issue for assets with multiple versions, you can use the following SQL to fix any asset versions that have the incorrect storage path:

update     psys_asset_version v
inner join psys_asset         a on v.id = a.active_version

set        v.storage_path = a.storage_path,
           v.asset_url    = null

where      a.file_name    is not null
and        v.storage_path != a.storage_path;