summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-11-25 16:03:29 +0000
committerDries Buytaert <dries@buytaert.net>2001-11-25 16:03:29 +0000
commite893d4fb66af78e077ccc4372eb91ac8db855653 (patch)
tree22659322c8390719342723d01b1689559fce6b6b /modules/node.module
parent3c90763607f2089b69659487ea09fc5acf8e30b0 (diff)
downloadbrdo-e893d4fb66af78e077ccc4372eb91ac8db855653.tar.gz
brdo-e893d4fb66af78e077ccc4372eb91ac8db855653.tar.bz2
- By default, spaced the "Allowed HTML tags" so that they will wrap nicely
without screwing with the site's layout.
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module
index 704ca8928..9ef069c5f 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -67,7 +67,7 @@ function node_conf_options() {
function node_conf_filters() {
$output .= form_select(t("Enable HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Allow HTML and PHP tags in user-contributed content."));
- $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 .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<a> <b> <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("Enable link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "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 />";