From 4d5ec09a64e0bc69b48cde0b22042f770599b813 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Tue, 8 Dec 2009 06:58:41 +0000 Subject: [PATCH] #645784 follow-up by jhodgdon and David_Rothstein: Put back accidentally rolled-back help text. --- modules/filter/filter.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/filter/filter.module b/modules/filter/filter.module index cd220903439..71f5c4c50b6 100644 --- a/modules/filter/filter.module +++ b/modules/filter/filter.module @@ -26,8 +26,8 @@ function filter_help($path, $arg) { $output .= ''; return $output; case 'admin/config/content/formats': - $output = '

' . t('Use the list below to review the text formats available to each user role and to control the order of formats listed in the Text format fieldset. (The Text format fieldset is displayed below textareas when users with access to more than one text format create multi-line content.) All text formats are available to users in roles with the "administer filters" permission, and the special %fallback format is available to all users. You can configure access to other text formats on the Permissions page.', array('%fallback' => filter_fallback_format_title(), '@url' => url('admin/config/people/permissions', array('fragment' => 'module-filter')))) . '

'; - $output .= '

' . t('Since text formats, if available, are presented in the same order as the list below, and the default format for each user is the first one on the list for which that user has access, it may be helpful to arrange the formats in descending order of your preference for their use. Remember that your changes will not be saved until you click the Save changes button at the bottom of the page.') . '

'; + $output = '

' . t("Control which HTML tags and other formatting can be used for text input. Don't allow too much formatting for untrusted users. This can be a serious security risk.") . '

'; + $output .= '

' . t('Text formats are presented in the order you arrange them below. Configure a text format to change its behavior.') . '

'; return $output; case 'admin/config/content/formats/%': return '

' . t('Every filter performs one particular change on the user input, for example stripping out malicious HTML or making URLs clickable. Choose which filters you want to apply to text in this format. If you notice some filters are causing conflicts in the output, you can rearrange them.', array('@rearrange' => url('admin/config/content/formats/' . $arg[4] . '/order'))) . '

';