summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-19 05:34:52 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-19 05:34:52 +0000
commitb1f65922a399cbd82e14dd6a4aff60f3000d2db0 (patch)
treee2cc22e5cfa88df46fc707d2283a1607c9aa78b4
parentb1938ce0913f05b3899b10287fba09acc710c598 (diff)
downloadbrdo-b1f65922a399cbd82e14dd6a4aff60f3000d2db0.tar.gz
brdo-b1f65922a399cbd82e14dd6a4aff60f3000d2db0.tar.bz2
#523542 by tgeller: Fix link in filter help text.
-rw-r--r--modules/filter/filter.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
index 7896187e9..00c4b5568 100644
--- a/modules/filter/filter.module
+++ b/modules/filter/filter.module
@@ -30,7 +30,7 @@ function filter_help($path, $arg) {
$output .= '<p>' . t('Since text formats, if available, are presented in the same order as the list below, it may be helpful to arrange the formats in descending order of your preference for their use. To change the order of an text format, grab a drag-and-drop handle under the <em>Name</em> column and drag to a new location 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 changes</em> button at the bottom of the page.') . '</p>';
return $output;
case 'admin/settings/formats/%':
- 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 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/filter/' . $arg[3] . '/order'))) . '</p>';
+ 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 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/formats/' . $arg[3] . '/order'))) . '</p>';
case 'admin/settings/formats/%/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">edit tab</a> first.', array('@url' => url('admin/settings/formats/' . $arg[3]))) . '</p>';
case 'admin/settings/formats/%/order':