Aleksander Machniak
2014-08-05 9828c1abe2a5df570028e55fa0356b3a0cac1d76
Fix default vacation status (#1490019) - improve error message
3 files modified
7 ■■■■ changed files
plugins/managesieve/Changelog 1 ●●●● patch | view | raw | blame | history
plugins/managesieve/lib/Roundcube/rcube_sieve_vacation.php 5 ●●●●● patch | view | raw | blame | history
plugins/managesieve/localization/en_US.inc 1 ●●●● patch | view | raw | blame | history
plugins/managesieve/Changelog
@@ -1,4 +1,5 @@
- Fix missing css/js scripts in filter form in mail task
- Fix default vacation status (#1490019)
* version 8.0 [2014-07-16]
-----------------------------------------------------------
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));
plugins/managesieve/localization/en_US.inc
@@ -225,5 +225,6 @@
$messages['invaliddateformat'] = 'Invalid date or date part format';
$messages['saveerror'] = 'Unable to save data. Server error occurred.';
$messages['vacationsaved'] = 'Vacation data saved successfully.';
$messages['emptyvacationbody'] = 'Body of vacation message is required!';
?>