Lieven Maus - 2017-01-15 13:14:11
if you do something like
// Add new setting to section third_section
$ini->data['third_section']['phpversion']['old'] = 5.4;
$ini->data['third_section']['phpversion']['new'] = 5.5;
and save, then read again, you get:
// Add new setting to section third_section
$ini->data['third_section']['phpversion'][0] = 5.4;
$ini->data['third_section']['phpversion'][1] = 5.5;
can this behaviour be changed?