Skip to content
Snippets Groups Projects

ISTWCMS-2607: Remove extra quote which causes HTML validation error

Merged Liam Morland requested to merge feature/ISTWCMS-2607-lkmorlan-html-validation into 7.x-1.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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