summaryrefslogtreecommitdiff
path: root/modules/block.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-06-29 19:53:14 +0000
committerDries Buytaert <dries@buytaert.net>2005-06-29 19:53:14 +0000
commit2c10ff4b5febd8f348febd4a23f3a4fef48f7240 (patch)
treef8940be8aabec6d563a088ff3737249f6caeeffb /modules/block.module
parent9648096e3271f774e7cf821a1827f61bba12385b (diff)
downloadbrdo-2c10ff4b5febd8f348febd4a23f3a4fef48f7240.tar.gz
brdo-2c10ff4b5febd8f348febd4a23f3a4fef48f7240.tar.bz2
- Fixed problems with filter formats and problem with XML-RPC server.
Diffstat (limited to 'modules/block.module')
-rw-r--r--modules/block.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block.module b/modules/block.module
index 75a69b2f6..045cfe8f2 100644
--- a/modules/block.module
+++ b/modules/block.module
@@ -104,7 +104,7 @@ function block_block($op = 'list', $delta = 0, $edit = array()) {
case 'view':
$block = db_fetch_object(db_query('SELECT * FROM {boxes} WHERE bid = %d', $delta));
$data['subject'] = check_plain($block->title);
- $data['content'] = check_output($block->body, $block->format);
+ $data['content'] = check_output($block->body, $block->format, FALSE);
return $data;
}
}