summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-12-28 12:02:52 +0000
committerDries Buytaert <dries@buytaert.net>2007-12-28 12:02:52 +0000
commita88c178b91ff1342377b89b68965dcf7aaac725a (patch)
treef2769b94c1e6680d79c3a6cb089066f9cd27153f /modules/blog/blog.module
parentfaf7ebafce3da7a285e24a17c199e01c37d0fafb (diff)
downloadbrdo-a88c178b91ff1342377b89b68965dcf7aaac725a.tar.gz
brdo-a88c178b91ff1342377b89b68965dcf7aaac725a.tar.bz2
- Patch #204221 by webernet: code style fixes.
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r--modules/blog/blog.module7
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index a35b250f9..0f2987781 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -80,11 +80,8 @@ function blog_form(&$node) {
if (empty($node->body)) {
- /*
- ** If the user clicked a "blog it" link, we load the data from the
- ** database and quote it in the blog:
- */
-
+ // If the user clicked a "blog it" link, we load the data from the
+ // database and quote it in the blog.
if ($nid && $blog = node_load($nid)) {
$node->body = '<em>'. $blog->body .'</em> ['. l($blog->name, "node/$nid") .']';
}