diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-07-17 06:26:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-07-17 06:26:33 +0000 |
commit | bbc5d4a152284537e1e6480289be13d8eb1bbfab (patch) | |
tree | ebf43e2c6e888db24c0378421ff2fb82a4a833ce /modules/blog/blog.module | |
parent | 04369e6a68b144ed906ceb6c52fcbf84251eb19c (diff) | |
download | brdo-bbc5d4a152284537e1e6480289be13d8eb1bbfab.tar.gz brdo-bbc5d4a152284537e1e6480289be13d8eb1bbfab.tar.bz2 |
- blog.module:
+ missing ', 1' parameter to check_output()
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 9bdf72cc9..44ab96549 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -105,7 +105,7 @@ function blog_page_last() { $links[] = "<a href=\"node.php?id=$blog->nid\">". t("discuss") ."</a>"; $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>"; + $output .= "<tr><td colspan=\"2\"><div style=\"margin-left: 20px;\">". check_output($blog->body, 1) ."</div><br /></td></tr>"; unset($links); } $output .= "</table>"; |