Skip to content

Commit

Permalink
Do not use <br> tags in the show view (see #724)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Sep 24, 2019
1 parent cad0c13 commit 251d272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/contao/drivers/DC_Table.php
Expand Up @@ -468,7 +468,7 @@ public function show()
}
}

$row[$i] = implode('<br>', $value);
$row[$i] = implode(', ', $value);
}
else
{
Expand Down Expand Up @@ -499,7 +499,7 @@ public function show()
}
}

$row[$i] = implode('<br>', $value);
$row[$i] = implode(', ', $value);
}
}
elseif ($GLOBALS['TL_DCA'][$this->strTable]['fields'][$i]['eval']['rgxp'] == 'date')
Expand Down

0 comments on commit 251d272

Please sign in to comment.