From 1383729ec13427dcf4ee84cb14021459ff4c6759 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 7 Jun 2001 16:28:48 +0000 Subject: - Node filters: renamed 'Strip link tags' to 'Enable link tags'. (Suggestion by Remco.) --- modules/node/node.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/node/node.module') 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", "
      • "), 64, 128, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped.")); $output .= "
        "; - $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 .= "
        "; return $output; } -- cgit v1.2.3