Skip to content

Commit 60c7e39

Browse files
committed
Add a warning to ez Publish update instructions (#3191)
1 parent f884132 commit 60c7e39

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

docs/migrating/migrating_from_ez_publish_platform.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ You can then proceed with consecutive upgrades to further versions: v1.13 LTS an
2727
- [Field Types reference](../api/field_type_reference.md) for overview of Field Types that do and don't exist in eZ Platform
2828
- API changes. While we have a strict backwards compatibility focus, some deprecated API features were removed and some changes were done to internal parts of the system. See [ezpublish-kernel:doc/bc/changes-6.0.md](https://github.com/ezsystems/ezpublish-kernel/blob/v6.7.0/doc/bc/changes-6.0.md)
2929

30+
31+
!!! warning "Unsupported legacy sorting methods"
32+
33+
In older eZ Publish versions, sub-items of content items could be sorted by Class identifier (option value 6) or Class name (option value 7).
34+
These sorting methods are no longer supported in [[= product_name =]].
35+
After you migrate, trying to render the Sub-items tab of content items that are configured to use the unsupported sorting methods results in an error.
36+
37+
To mitigate the problem, before you migrate, update the affected content items to use supported sorting methods such as Name, Published, or Priority.
38+
You can identify the configurations that use unsupported sorting methods with the following SQL query:
39+
40+
```sql
41+
SELECT node_id, parent_node_id, sort_field FROM ezcontentobject_tree WHERE sort_field IN (6, 7);
42+
```
43+
3044
!!! note
3145

3246
If you are migrating from a legacy eZ Publish version, this page contains the information you need. However, first have a look at an overview of the process in [Migrating from eZ Publish](migrating_from_ez_publish.md).

0 commit comments

Comments
 (0)