summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules_v3/batch_update/admin_batch_update.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules_v3/batch_update/admin_batch_update.php b/modules_v3/batch_update/admin_batch_update.php
index c9d404e649..b405ba484b 100644
--- a/modules_v3/batch_update/admin_batch_update.php
+++ b/modules_v3/batch_update/admin_batch_update.php
@@ -338,8 +338,8 @@ class base_plugin {
return
'<tr><th>'.WT_I18N::translate('Do not update the “last change” record').'</th>'.
'<td><select name="chan" onchange="this.form.submit();">'.
- '<option value="yes"' . ($this->chan ? '' : ' selected="selected"') . '>'.WT_I18N::translate('yes') .'</option>'.
- '<option value="no"' . ($this->chan ? ' selected="selected"' : '') . '>'.WT_I18N::translate('no').'</option>'.
+ '<option value="0"' . ($this->chan ? '' : ' selected="selected"') . '>'.WT_I18N::translate('yes') .'</option>'.
+ '<option value="1"' . ($this->chan ? ' selected="selected"' : '') . '>'.WT_I18N::translate('no').'</option>'.
'</select></td></tr>';
}