summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornatrak <>2001-06-15 17:20:10 +0000
committernatrak <>2001-06-15 17:20:10 +0000
commitd23ea5043c9cce3d55841134ce0ce2aa7a4b6d3b (patch)
treeff46461b513b025027e9ce2e1622430e65f3ab32
parenta7fddeb85a24d0cf51f5cb44a0f33961bbf655cc (diff)
downloadbrdo-d23ea5043c9cce3d55841134ce0ce2aa7a4b6d3b.tar.gz
brdo-d23ea5043c9cce3d55841134ce0ce2aa7a4b6d3b.tar.bz2
- Fixed the help text for attributes (Reported by Kristjan).
-rw-r--r--modules/meta.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/meta.module b/modules/meta.module
index e8e6fc0dc..8ff9640d8 100644
--- a/modules/meta.module
+++ b/modules/meta.module
@@ -54,7 +54,7 @@ function meta_form_tag($edit = array()) {
global $REQUEST_URI;
$form .= form_textfield("Meta-tag name", "name", $edit[name], 50, 64, "Required. The name for this meta-tag. Example: 'Apache'.");
- $form .= form_textfield("Attributes", "attributes", $edit[attributes], 50, 64, htmlentities("Required. Format: <type>:<value>;<type>:<value>;. Example: 'software=apache,type=webserver,os=linux,'."));
+ $form .= form_textfield("Attributes", "attributes", $edit[attributes], 50, 64, htmlentities("Required. Format: <type>=<value>,<type>=<value>;. Example: 'software=apache,type=webserver,os=linux,'."));
$form .= form_textfield("Collections", "collections", $edit[collections], 50, 64, "Required. A comma-seperated list of collections you want to associate this meta-tag with. Example: 'Software, Internet'");
$form .= form_submit("Submit");