summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-11-18 20:24:11 +0000
committerDries Buytaert <dries@buytaert.net>2001-11-18 20:24:11 +0000
commit41295e4d0063cfa33ba5a078211c22079e22be2a (patch)
treeec3a3efe6d34e842b6ff835cd95b16dd822da614 /modules/blog
parentb714757857f04ad0efac0725bfeb1cb365b303ef (diff)
downloadbrdo-41295e4d0063cfa33ba5a078211c22079e22be2a.tar.gz
brdo-41295e4d0063cfa33ba5a078211c22079e22be2a.tar.bz2
- fixed bug with minimum teaser/blog/story size
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 9f345c1d7..3d94152bc 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -3,7 +3,7 @@
function blog_conf_options() {
$output .= form_textarea("Explanation or submission guidelines", "blog_help", variable_get("blog_help", ""), 55, 4, "This text will be displayed at the top of the blog submission form. Useful for helping or instructing your users.");
- $output .= form_select(t("Minimum number of words in a node"), "minimum_blog_size", variable_get("minimum_node_size", 0), array(0 => "0 words", 10 => "10 words", 25 => "25 words", 50 => "50 words", 75 => "75 words", 100 => "100 words", 125 => "125 words", 150 => "150 words", 175 => "175 words", 200 => "200 words"), t("The minimum number of words a personal blog entry should consist of. This can be useful to rule out submissions that do not meet the site's standards, such as short test post."));
+ $output .= form_select(t("Minimum number of words in a node"), "minimum_blog_size", variable_get("minimum_blog_size", 0), array(0 => "0 words", 10 => "10 words", 25 => "25 words", 50 => "50 words", 75 => "75 words", 100 => "100 words", 125 => "125 words", 150 => "150 words", 175 => "175 words", 200 => "200 words"), t("The minimum number of words a personal blog entry should consist of. This can be useful to rule out submissions that do not meet the site's standards, such as short test post."));
return $output;