Topic: misc.php Rules include should not be enclosed in <p></p>
The admin options state for rules:
This text will not be parsed like regular posts and thus may contain HTML.
So to allow valid html, line 52 of misc.php should be changed from
<p><?php echo $pun_config['o_rules_message'] ?></p>
to <?php echo $pun_config['o_rules_message'] ?>
The <p> block level element doesn't permit <ol>, for example.