diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-07 16:28:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-07 16:28:48 +0000 |
commit | 1383729ec13427dcf4ee84cb14021459ff4c6759 (patch) | |
tree | 65fe708a44aed0b69312503b63b519f97b3e7339 /modules/node/node.module | |
parent | 792de8c5371a8976cbb2da59f98572502aee1aa3 (diff) | |
download | brdo-1383729ec13427dcf4ee84cb14021459ff4c6759.tar.gz brdo-1383729ec13427dcf4ee84cb14021459ff4c6759.tar.bz2 |
- Node filters: renamed 'Strip link tags' to 'Enable link tags'.
(Suggestion by Remco.)
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 3f81dc87e..959ddff19 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -28,10 +28,10 @@ function node_help() { } function node_conf_filters() { - $output .= form_select(t("Strip HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Strip HTML and PHP tags.")); + $output .= form_select(t("Enable HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Strip HTML and PHP tags.")); $output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<A><B><BLOCKQUOTE><DD><DL><DT><I><LI><OL><U><UL>"), 64, 128, 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("Strip link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), t("Substitute special [[link]] tags.")); + $output .= form_select(t("Enable link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), t("Substitute special [[link]] tags.")); $output .= "<HR>"; return $output; } |