Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
bbc5d4a1
Commit
bbc5d4a1
authored
Jul 17, 2001
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- blog.module:
+ missing ', 1' parameter to check_output()
parent
04369e6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/blog.module
modules/blog.module
+1
-1
modules/blog/blog.module
modules/blog/blog.module
+1
-1
No files found.
modules/blog.module
View file @
bbc5d4a1
...
...
@@ -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>"
;
...
...
modules/blog/blog.module
View file @
bbc5d4a1
...
...
@@ -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>"
;
...
...
Write
Preview
Markdown
is supported
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