summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/functions/functions_edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions/functions_edit.php b/includes/functions/functions_edit.php
index a26bc7d36b..582da7b97a 100644
--- a/includes/functions/functions_edit.php
+++ b/includes/functions/functions_edit.php
@@ -98,7 +98,7 @@ function radio_buttons($name, $values, $selected, $extra = '') {
*/
function edit_field_yes_no($name, $selected = false) {
return radio_buttons(
- $name, array(false=>WT_I18N::translate('no'), true=>WT_I18N::translate('yes')), $selected
+ $name, array(WT_I18N::translate('no'), WT_I18N::translate('yes')), $selected
);
}