Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_ct_embedded_facts_and_figures
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_ct_embedded_facts_and_figures
Merge requests
!2
ISTWCMS-2607: Remove extra quote which causes HTML validation error
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ISTWCMS-2607: Remove extra quote which causes HTML validation error
feature/ISTWCMS-2607-lkmorlan-html-validation
into
7.x-1.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Liam Morland
requested to merge
feature/ISTWCMS-2607-lkmorlan-html-validation
into
7.x-1.x
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Fixes issue introduced in
933e9570
.
👍
0
👎
0
Merge request reports
Compare
7.x-1.x
7.x-1.x (base)
and
latest version
latest version
738952bb
1 commit,
4 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
uw_ct_embedded_facts_and_figures.module
+
1
−
1
Options
@@ -261,7 +261,7 @@ function cke_ff_process($text, $filter, $format, $langcode, $cache, $cache_id) {
if
(
$data_item
[
'alt'
]
!==
NULL
)
{
$attr
[
'alt'
]
=
$data_item
[
'alt'
];
}
$html
.
=
'<img'
.
drupal_attributes
(
$attr
)
.
'
"
>'
;
$html
.
=
'<img'
.
drupal_attributes
(
$attr
)
.
'>'
;
}
else
{
$html
.
=
'<div class="highlighted-fact text-'
.
strtolower
(
$text_align
)
.
' '
.
$default_colour_class
.
' no-icon">'
;
Loading