LSattr_html_maildir : fix PHP error in class contructor

This commit is contained in:
Benjamin Renard 2019-03-11 22:43:50 +01:00
parent b9102aeb9e
commit 34d4c1a8ba

View file

@ -35,7 +35,7 @@ class LSattr_html_maildir extends LSattr_html {
function LSattr_html_maildir ($name,$config,&$attribute) { function LSattr_html_maildir ($name,$config,&$attribute) {
$attribute -> addObjectEvent('before_delete',$this,'beforeDelete'); $attribute -> addObjectEvent('before_delete',$this,'beforeDelete');
$attribute -> addObjectEvent('after_delete',$this,'deleteMaildirByFTP'); $attribute -> addObjectEvent('after_delete',$this,'deleteMaildirByFTP');
return parent :: LSattr_html($name,$config,&$attribute); return parent :: LSattr_html($name, $config, $attribute);
} }
public function doOnModify($action,$cur,$new) { public function doOnModify($action,$cur,$new) {