Hi,
I just wanted to report a “bug” that I just found on Kirby 2.5.6 with structure fields. Previously I tested v2.5.6 RC-1 on a preconfigured multi language page without any (visible) problems. After upgrading today a single language page to the final v2.5.6 release, I figured out a problem with structure fields on the panel.
This is what I get:
It seems that I have to define on my single language page’s config.php a default language, to get rid of this kind of error message.
c::set('languages', array(
array(
'code' => 'en',
'name' => 'English',
'locale' => 'en_*',
'url' => 'https://mypage.com',
'default' => true
)
));
Is this a bug or do I need to define a language even for single language pages from v2.5.6+?