By johnalbin on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
7.x-5.x
Introduced in version:
7.x-5.2
Issue links:
Description:
The comment links added to the bottom of nodes were broken because of a missing ID attribute in the comment-wrapper.tpl.php.
If you overrode Zen’s default comment-wrapper.tpl.php template, you need to make the following change to your template:
Before:
<section class="comments <?php print $classes; ?>"<?php print $attributes; ?>>
After:
<section id="comments" class="comments <?php print $classes; ?>"<?php print $attributes; ?>>
Impacts:
Site builders, administrators, editors
Themers