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
254673a6
Commit
254673a6
authored
Jun 23, 2012
by
Dries
Browse files
- Patch
#1564942
by Kevin Morse: Fixed Compose tips has invalid markup.
parent
fb1cb6f3
Changes
1
Show whitespace changes
Inline
Side-by-side
core/modules/filter/filter.pages.inc
View file @
254673a6
...
...
@@ -70,7 +70,7 @@ function theme_filter_tips($variables) {
if
(
count
(
$tiplist
)
>
0
)
{
$output
.
=
'<ul class="tips">'
;
foreach
(
$tiplist
as
$tip
)
{
$output
.
=
'<li'
.
(
$long
?
'
id
="filter-'
.
str_replace
(
"/"
,
"-"
,
$tip
[
'id'
])
.
'">'
:
'>'
)
.
$tip
[
'tip'
]
.
'</li>'
;
$output
.
=
'<li'
.
(
$long
?
'
class
="filter-'
.
str_replace
(
"/"
,
"-"
,
$tip
[
'id'
])
.
'">'
:
'>'
)
.
$tip
[
'tip'
]
.
'</li>'
;
}
$output
.
=
'</ul>'
;
}
...
...
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