Aleksander Machniak
2014-08-05 9828c1abe2a5df570028e55fa0356b3a0cac1d76
plugins/managesieve/lib/Roundcube/rcube_sieve_vacation.php
@@ -124,8 +124,9 @@
        }
        if ($vacation_action['reason'] == '') {
            $error = 'managesieve.cannotbeempty';
            $error = 'managesieve.emptyvacationbody';
        }
        if ($vacation_action[$interval_type] && !preg_match('/^[0-9]+$/', $vacation_action[$interval_type])) {
            $error = 'managesieve.forbiddenchars';
        }
@@ -367,7 +368,7 @@
        }
        $table->add('title', html::label('vacation_status', $this->plugin->gettext('vacation.status')));
        $table->add(null, $status->show($this->vacation['disabled'] ? 'off' : 'on'));
        $table->add(null, $status->show(!isset($this->vacation['disabled']) || $this->vacation['disabled'] ? 'off' : 'on'));
        $out .= html::tag('fieldset', $class, html::tag('legend', null, $this->plugin->gettext('vacation.reply')) . $table->show($attrib));