diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-01-29 23:15:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-01-29 23:15:10 +0000 |
commit | 2e6e1efbae3358dd236a8029ee27f4d5a2c0289b (patch) | |
tree | 100cdef20b202c5f51568d0f0514c681a8feb2bd /modules/node.module | |
parent | 5b720be335ac659b6744399bd7f646ae0ef9566b (diff) | |
download | brdo-2e6e1efbae3358dd236a8029ee27f4d5a2c0289b.tar.gz brdo-2e6e1efbae3358dd236a8029ee27f4d5a2c0289b.tar.bz2 |
- Renamed "Allow HTML tags" to "Filter HTML tags" for clarity. Reported by
Ax.
Diffstat (limited to 'modules/node.module')
-rw-r--r-- | modules/node.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node.module b/modules/node.module index 843eb1597..65cc88395 100644 --- a/modules/node.module +++ b/modules/node.module @@ -391,11 +391,11 @@ function node_conf_options() { } function node_conf_filters() { - $output .= form_select(t("Enable HTML tags"), "filter_html", variable_get("filter_html", 0), array(t("Disabled"), t("Enabled")), t("Allow HTML and PHP tags in user-contributed content.")); + $output .= form_select(t("Filter HTML tags"), "filter_html", variable_get("filter_html", 0), array(t("Disabled"), t("Enabled")), t("Filter HTML and PHP tags in user-contributed content.")); $output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<a> <b> <dd> <dl> <dt> <i> <li> <ol> <u> <ul>"), 64, 255, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped.")); $output .= "<hr />"; - $output .= form_select(t("Enable link tags"), "filter_link", variable_get("filter_link", 0), array(t("Disabled"), t("Enabled")), t("Substitute special [[nodesubject|text]] tags. Your browser will display 'text', and when you click on it your browser will open the node with the subject 'nodesubject'. Please be aware that you'll need to copy the subject of the target node exactly in order to use this feature.")); - $output .= "<hr />"; + // $output .= form_select(t("Enable link tags"), "filter_link", variable_get("filter_link", 0), array(t("Disabled"), t("Enabled")), t("Substitute special [[nodesubject|text]] tags. Your browser will display 'text', and when you click on it your browser will open the node with the subject 'nodesubject'. Please be aware that you'll need to copy the subject of the target node exactly in order to use this feature.")); + // $output .= "<hr />"; return $output; } |