summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-09-09 08:16:10 +0000
committerDries Buytaert <dries@buytaert.net>2001-09-09 08:16:10 +0000
commit7dd34c6a7ff84c1fbba09beffa6c278cdbcb8d50 (patch)
tree00e8d5308a3bc7aeec6fc24a2b5e1e3256a65ce5 /modules/blog/blog.module
parentb9947121d6cc384f18bb2ab97dbf274bf679324e (diff)
downloadbrdo-7dd34c6a7ff84c1fbba09beffa6c278cdbcb8d50.tar.gz
brdo-7dd34c6a7ff84c1fbba09beffa6c278cdbcb8d50.tar.bz2
- Fixed a HTML typo in the blocks: the <a href="">-tags where not closed.
Diffstat (limited to 'modules/blog/blog.module')
-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 0e2a9881e..d036679c0 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -325,7 +325,7 @@ function blog_block() {
$result = db_query("SELECT u.name, n.timestamp, n.title, n.nid FROM node n LEFT JOIN users u ON n.author = u.id WHERE n.type = 'blog' ORDER BY n.nid DESC LIMIT 10");
while ($node = db_fetch_object($result)) {
- $output .= "<a href=\"module.php?mod=blog&op=view&name=". urlencode($node->name) ."\">". check_output($node->title) ."<br />\n";
+ $output .= "<a href=\"module.php?mod=blog&op=view&name=". urlencode($node->name) ."\">". check_output($node->title) ."</a><br />\n";
}
$block[0]["subject"] = "<a href=\"module.php?mod=blog\">". t("User blogs") ."</a>";