ID: 13420
Title: Fix section parsing with different separators
Component: Core & setup
Level: 1
Class: Bug fix
Version: 2.2.0i1
In checkmk it's possible to transport a single section with different separators:
<code>
<<<section:sep(44)>>>
a,1
<<<section:sep(124)>>>
b|2
<<<section:sep(44)>>>
c,3
</code>
Up until this werk, the ordering of the lines where not preserved, the check
function would have received them as a,1 c,3 b,2