Page Chapter 7. Working with Nodes, Page 97

Location on the page: 
Within the "node-joke-tpl.php" template.
Error: 

The markup doesn't validate:

  • There is an extra closing </legend> tag.
  • check_markup() shouldn't be used in a label element. (A paragraph element is not valid here).
Correction: 
  • Remove the stray </legend> tag.
  • Change "check_markup($node->punchline)" to "$node->punchline".
Description of the Error: 

Invalid XHTML.