Inherited Tab sort order is not replicated after changed - Temporary patch
I found an issue in Umbraco 7.2.0 - 7.2.1.
The Tab sort order value is not replicated to inherited document types after it is changed.
The issue is discussed here: http://issues.umbraco.org/issue/U4-6195
I found a temporary patch to this.
When you look some wrong order of tabbs, you can adjust this executing this T-SQL code to the database.
Careful: to avoid loss of data make a backup of database before to proceed.
UPDATE TB1
SET sortorder = TB2.sortorder
FROM [cmsPropertyTypeGroup] TB1
INNER JOIN [cmsPropertyTypeGroup] TB2 ON TB1.parentGroupId = TB2.id
WHERE TB1.sortorder <> TB2.sortorder
Inherited Tab sort order is not replicated after changed - Temporary patch
I found an issue in Umbraco 7.2.0 - 7.2.1.
The Tab sort order value is not replicated to inherited document types after it is changed.
The issue is discussed here: http://issues.umbraco.org/issue/U4-6195
I found a temporary patch to this.
When you look some wrong order of tabbs, you can adjust this executing this T-SQL code to the database.
Careful: to avoid loss of data make a backup of database before to proceed.
Thanks for the tip. I'm still having this problem sometimes.
Jeroen
Worked for me! Thanks for sharing the SQL =D
You are welcome.
I am happy to help the community
is working on a reply...