summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-02 15:15:32 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-02 15:15:32 +0000
commite0940828324e5bafed6295ecd8b0a642903a94a1 (patch)
treea5e1b4be0227b273663171cd784dc5e579b4b614
parentd1bc88924267f992b539b635a8de296e96c56ae3 (diff)
downloadbrdo-e0940828324e5bafed6295ecd8b0a642903a94a1.tar.gz
brdo-e0940828324e5bafed6295ecd8b0a642903a94a1.tar.bz2
- Patch #240988 by David_Rothstein: fixed left-over documentation after the HTML escaping became a filter of its own.
-rw-r--r--modules/filter/filter.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
index 10a99a644..a3b4d17f5 100644
--- a/modules/filter/filter.module
+++ b/modules/filter/filter.module
@@ -32,7 +32,7 @@ function filter_help($path, $arg) {
case 'admin/settings/filters/%':
return '<p>' . t('Every <em>filter</em> 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 input format. If you notice some filters are causing conflicts in the output, you can <a href="@rearrange">rearrange them</a>.', array('@rearrange' => url('admin/settings/filters/' . $arg[3] . '/order'))) . '</p>';
case 'admin/settings/filters/%/configure':
- return '<p>' . t('If you cannot find the settings for a certain filter, make sure you have enabled it on the <a href="@url">view tab</a> first.', array('@url' => url('admin/settings/filters/' . $arg[3]))) . '</p>';
+ return '<p>' . t('If you cannot find the settings for a certain filter, make sure you have enabled it on the <a href="@url">edit tab</a> first.', array('@url' => url('admin/settings/filters/' . $arg[3]))) . '</p>';
case 'admin/settings/filters/%/order':
$output = '<p>' . t('Because of the flexible filtering system, you might encounter a situation where one filter prevents another from doing its job. For example: a word in an URL gets converted into a glossary term, before the URL can be converted to a clickable link. When this happens, rearrange the order of the filters.') . '</p>';
$output .= '<p>' . t("Filters are executed from top-to-bottom. To change the order of the filters, modify the values in the <em>Weight</em> column or grab a drag-and-drop handle under the <em>Name</em> column and drag filters to new locations in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.") . '</p>';
@@ -672,7 +672,7 @@ function _filter_html_settings($format) {
'#default_value' => variable_get("allowed_html_$format", '<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>'),
'#size' => 64,
'#maxlength' => 255,
- '#description' => t('If "Strip disallowed tags" is selected, optionally specify tags which should not be stripped. JavaScript event attributes are always stripped.'),
+ '#description' => t('Specify a list of tags which should not be stripped. (Note that JavaScript event attributes are always stripped.)'),
);
$form['filter_html']["filter_html_help_$format"] = array(
'#type' => 'checkbox',