Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
c7bc1710
Commit
c7bc1710
authored
May 28, 2003
by
Dries
Browse files
- Fixed braino. Reported by Remco as bug
#1787
.
parent
562acf8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/node.module
View file @
c7bc1710
...
...
@@ -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
);
}
...
...
modules/node/node.module
View file @
c7bc1710
...
...
@@ -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
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment