- Fixed braino. Reported by Remco as bug #1787.

4.2.x
Dries Buytaert 2003-05-28 15:07:25 +00:00
parent 562acf8b6a
commit c7bc17103a
2 changed files with 4 additions and 4 deletions

View File

@ -355,8 +355,8 @@ function node_view($node, $main = 0) {
** Default behavior:
*/
$node->teaser = filter($node->teaser);
$node->body = filter($node->body);
$node->teaser = check_output($node->teaser);
$node->body = check_output($node->body);
theme("node", $node, $main);
}

View File

@ -355,8 +355,8 @@ function node_view($node, $main = 0) {
** Default behavior:
*/
$node->teaser = filter($node->teaser);
$node->body = filter($node->body);
$node->teaser = check_output($node->teaser);
$node->body = check_output($node->body);
theme("node", $node, $main);
}