Bob Siefkes
Bob Siefkes
when in model I use defaultValue(1) then on new record I cannot set is to null. $m->unload()->set('test',null)->save(); The result will be test=1 while I would expect test=null. As a workaround...
https://github.com/atk4/atk4/blob/master/lib/AbstractView.php#L201 When using this: `$this->add('View',null,null,array('test'));` It seems that AbstractView will loadTemplate() AND cloneRegion(). I think it only needs to cloneRegion in this case: `$this->add('View',null,null,array('test','tag'));` Please consider to change this `$this->template=$this->template->cloneRegion(...
Atk4 tries to create a folder in logger.php while I forced logger to be disable. However I found out because it couldn't make a folder /var/log/atk4/test so it generated exception...