diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-02-17 22:33:31 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-02-17 22:33:31 +0000 |
commit | 52314ddc321a3895b4ea70afc43968c87aebf01e (patch) | |
tree | 4339567d47801790a322532c5537bdd03d1d685f /modules/blog.module | |
parent | 465a5987702668321d2a1bde11ac6fa59e62f7d6 (diff) | |
download | brdo-52314ddc321a3895b4ea70afc43968c87aebf01e.tar.gz brdo-52314ddc321a3895b4ea70afc43968c87aebf01e.tar.bz2 |
- Theme options patch. See mailing list.
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
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; |