Update to Drupal 8.0.3. For more information, see https://www.drupal.org/drupal-8.0.3-release-notes
This commit is contained in:
parent
10f9f7fbde
commit
9db4fae9a7
202 changed files with 3806 additions and 760 deletions
|
@ -501,7 +501,12 @@ function template_preprocess_forums(&$variables) {
|
|||
}
|
||||
|
||||
$row[] = array(
|
||||
'data' => $topic->comment_count . $new_replies,
|
||||
'data' => [
|
||||
[
|
||||
'#prefix' => $topic->comment_count,
|
||||
'#markup' => $new_replies,
|
||||
],
|
||||
],
|
||||
'class' => array('forum__replies'),
|
||||
);
|
||||
$row[] = array(
|
||||
|
|
|
@ -514,6 +514,9 @@ class ForumTest extends WebTestBase {
|
|||
// Check that forum renders properly.
|
||||
$this->drupalGet("forum/{$this->forum['tid']}");
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Verify there is no unintentional HTML tag escaping.
|
||||
$this->assertNoEscaped('<', '');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Reference in a new issue