Aleksander Machniak
2014-04-16 701d7a369b36813fd0673e0f4e373df6951e1c78
Fix compat. with PHP 5.2. (#1489813)
1 files modified
2 ■■■ changed files
plugins/managesieve/lib/Roundcube/rcube_sieve_vacation.php 2 ●●● patch | view | raw | blame | history
plugins/managesieve/lib/Roundcube/rcube_sieve_vacation.php
@@ -146,7 +146,7 @@
        if (!$error) {
            $rule               = $this->vacation;
            $rule['type']       = 'if';
            $rule['name']       = $rule['name'] ?: $this->plugin->gettext('vacation');
            $rule['name']       = $rule['name'] ? $rule['name'] : $this->plugin->gettext('vacation');
            $rule['disabled']   = $status == 'off';
            $rule['actions'][0] = $vacation_action;
            $rule['tests']      = $vacation_tests;