diff options
-rw-r--r-- | includes/locale.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index d45ffedf0..061106d74 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -952,7 +952,7 @@ function _locale_string_edit($lid) { foreach ($languages['name'] as $key => $lang) { $form .= (strlen($orig) > 40) ? form_textarea($lang, $key, '', 70, 15) : form_textfield($lang, $key, '', 50, 128); } - $form = form_item(t('Original text'), wordwrap(drupal_specialchars($orig, 0))) . $form; + $form = form_item(t('Original text'), wordwrap(check_plain($orig, 0))) . $form; $form .= form_submit(t('Save translations')); |