diff --git a/root/etc/e-smith/templates/var/lib/ajaxplorer/plugins/conf.serial/plugins_configs.ser/10All b/root/etc/e-smith/templates/var/lib/ajaxplorer/plugins/conf.serial/plugins_configs.ser/10All index cc338b9..4f59ce6 100644 --- a/root/etc/e-smith/templates/var/lib/ajaxplorer/plugins/conf.serial/plugins_configs.ser/10All +++ b/root/etc/e-smith/templates/var/lib/ajaxplorer/plugins/conf.serial/plugins_configs.ser/10All @@ -34,9 +34,14 @@ $data->{'core.notifications'} = { 'core_driver' => 'core' } }, - 'USER_EVENTS' => '1' + 'USER_EVENTS' => '__true__' }; -$OUT = serialize($data); +$data = serialize($data); +# PHP::Serialization has now way to +# represent a boolean, so lets replace __true__ +# manually +$data =~ s/s:8:"__true__";/b:1;/g; +$OUT = $data; }