Remove PHP notice when there is a validation error on settings page

This commit is contained in:
Frederic Guillot 2013-07-05 20:21:10 -04:00
parent 64a7c887f3
commit a3697d0875
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<?= Helper\form_label(t('Remove automatically read items'), 'autoflush') ?>
<?= Helper\form_select('autoflush', $autoflush_options, $values, $errors) ?><br/>
<?= Helper\form_checkbox('nocontent', t('Do not fetch the content of articles'), 1, $values['nocontent']) ?><br />
<?= Helper\form_checkbox('nocontent', t('Do not fetch the content of articles'), 1, isset($values['nocontent']) ? $values['nocontent'] : false) ?><br />
<div class="form-actions">
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>