Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
304
Merge Requests
304
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
1c2fc43b
Commit
1c2fc43b
authored
Jul 10, 2003
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Bugfix: fixed HTML typo in comment module. Patch by Torgeir Berg.
parent
e5b392b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/comment.module
modules/comment.module
+1
-1
modules/comment/comment.module
modules/comment/comment.module
+1
-1
No files found.
modules/comment.module
View file @
1c2fc43b
...
...
@@ -1237,7 +1237,7 @@ function comment($comment, $links = 0) {
$output
.
=
"<div class=
\"
subject
\"
>
$comment->subject
"
.
(
$comment
->
new
?
" "
.
theme
(
"theme_mark"
)
:
""
)
.
"</div>"
;
$output
.
=
"<div class=
\"
moderation
\"
>"
.
$comment
->
moderation
.
"</div>"
;
$output
.
=
"<div class=
\"
credit
\"
>"
.
t
(
"by %a on %b"
,
array
(
"%a"
=>
format_name
(
$comment
),
"%b"
=>
format_date
(
$comment
->
timestamp
)))
.
"</div>"
;
$output
.
=
"<div class=
\"
body
\"
>"
.
check_output
(
$comment
->
comment
)
.
"</div"
;
$output
.
=
"<div class=
\"
body
\"
>"
.
check_output
(
$comment
->
comment
)
.
"</div
>
"
;
$output
.
=
"<div class=
\"
links
\"
>
$links
</div>"
;
$output
.
=
"</div>"
;
print
$output
;
...
...
modules/comment/comment.module
View file @
1c2fc43b
...
...
@@ -1237,7 +1237,7 @@ function comment($comment, $links = 0) {
$output
.
=
"<div class=
\"
subject
\"
>
$comment->subject
"
.
(
$comment
->
new
?
" "
.
theme
(
"theme_mark"
)
:
""
)
.
"</div>"
;
$output
.
=
"<div class=
\"
moderation
\"
>"
.
$comment
->
moderation
.
"</div>"
;
$output
.
=
"<div class=
\"
credit
\"
>"
.
t
(
"by %a on %b"
,
array
(
"%a"
=>
format_name
(
$comment
),
"%b"
=>
format_date
(
$comment
->
timestamp
)))
.
"</div>"
;
$output
.
=
"<div class=
\"
body
\"
>"
.
check_output
(
$comment
->
comment
)
.
"</div"
;
$output
.
=
"<div class=
\"
body
\"
>"
.
check_output
(
$comment
->
comment
)
.
"</div
>
"
;
$output
.
=
"<div class=
\"
links
\"
>
$links
</div>"
;
$output
.
=
"</div>"
;
print
$output
;
...
...
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