mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
PHP8: fix error Undefined constant "status"
This commit is contained in:
parent
894ebe2f51
commit
3317cc735a
@ -949,11 +949,11 @@ class mail_sieve
|
||||
break;
|
||||
case 'enable':
|
||||
$msg = lang('rule with priority ') . $checked . lang(' enabled!');
|
||||
$this->rules[$checked][status] = 'ENABLED';
|
||||
$this->rules[$checked]['status'] = 'ENABLED';
|
||||
break;
|
||||
case 'disable':
|
||||
$msg = lang('rule with priority ') . $checked . lang(' disabled!');
|
||||
$this->rules[$checked][status] = 'DISABLED';
|
||||
$this->rules[$checked]['status'] = 'DISABLED';
|
||||
break;
|
||||
case 'move':
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user