summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-01-14 10:50:04 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-01-14 10:50:04 +0000
commit076034e7f23021637ee2563a17a7d89ce4601eb6 (patch)
tree263c7fa222bef106faf7c4d65c8f44d97f3d80db /modules/node.module
parentabbd2419f0944168291638d36b9fb7958ddda9e8 (diff)
downloadbrdo-076034e7f23021637ee2563a17a7d89ce4601eb6.tar.gz
brdo-076034e7f23021637ee2563a17a7d89ce4601eb6.tar.bz2
- increased the max limit for the HTML filter config textfield to 255.
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 540f11904..17db52dee 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -276,7 +276,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> <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, 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("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 />";