From 52314ddc321a3895b4ea70afc43968c87aebf01e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 17 Feb 2003 22:33:31 +0000 Subject: - Theme options patch. See mailing list. --- modules/blog.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/blog.module') diff --git a/modules/blog.module b/modules/blog.module index 6917baa5b..4d92d2d65 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -7,7 +7,7 @@ function blog_system($field){ } function blog_settings() { - $output = form_textarea(t("Explanation or submission guidelines"), "blog_help", variable_get("blog_help", ""), 55, 4, t("This text is displayed at the top of the blog submission form. It's useful for helping or instructing your users.")); + $output = form_textarea(t("Explanation or submission guidelines"), "blog_help", variable_get("blog_help", ""), 70, 4, t("This text is displayed at the top of the blog submission form. It's useful for helping or instructing your users.")); $words = t("words"); $output .= form_select(t("Minimum number of words in a blog entry"), "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 contain. This is useful to rule out submissions that do not meet the site's standards, such as short test posts.")); return $output; -- cgit v1.2.3