summaryrefslogtreecommitdiff
path: root/modules/blog.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/blog.module')
-rw-r--r--modules/blog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module
index 7aba6d5dc..0869fe19e 100644
--- a/modules/blog.module
+++ b/modules/blog.module
@@ -228,7 +228,7 @@ function blog_form(&$node, &$help, &$error) {
*/
if (count(explode(" ", $node->body)) < variable_get("minimum_blog_size", 0)) {
- $error["body"] = "<div style=\"color: red;\">". t("The body of your blog is too short.") ."</div>";
+ $error["body"] = theme_invoke("theme_error", t("The body of your blog is too short."));
}
}
else {