diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-07-14 19:02:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-07-14 19:02:36 +0000 |
commit | 8271f6c3613c0c6c196628b82bcd4f0182fac92c (patch) | |
tree | cd6f641e092ea57c577a6089bcbd695304fa227a /modules/blog | |
parent | 8f0c3fb52e0aa204c8f83912209d1d15e2ebaa20 (diff) | |
download | brdo-8271f6c3613c0c6c196628b82bcd4f0182fac92c.tar.gz brdo-8271f6c3613c0c6c196628b82bcd4f0182fac92c.tar.bz2 |
- A lot of (a) visual and (b) navigational improvements to import.module.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 094ca7c64..14d8b48b7 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -100,8 +100,8 @@ function blog_page_last() { $links[] = "<a href=\"submit.php?mod=blog&type=blog&id=$blog->nid\">". t("blog") ."</a>"; $links[] = "<a href=\"node.php?id=$blog->nid\">". t("discuss") ."</a>"; - $output .= "<tr><td><b>$blog->title</b></td><td align=\"right\">". $theme->links($links) ."</td></tr>"; - $output .= "<tr><td colspan=\"2\"><div style=\"margin-left: 20px; margin-bottom: 2px;\">$blog->body</div></td></tr>"; + $output .= "<tr><td><b>". check_output($blog->title) ."</b></td><td align=\"right\">". $theme->links($links) ."</td></tr>"; + $output .= "<tr><td colspan=\"2\"><div style=\"margin-left: 20px;\">". check_output($blog->body) ."</div><br /></td></tr>"; unset($links); } $output .= "</table>"; |