centurion-project / Centurion

Centurion is an open-source CMS delivered as a flexible PHP5 Content Management Framework
http://www.centurion-project.org
197 stars 51 forks source link

Flatpages are not HTML valid #56

Closed aurmil closed 12 years ago

aurmil commented 12 years ago

flatpages templates contain

    <p class="description rte">
      <?php echo $this->flatpageRow->body; ?>
    </p>

flatpage body contains p tags (due to WYSIWYG usage in back office) p tag can not contain other p tags

so it should be

    <div class="description rte">
      <?php echo $this->flatpageRow->body; ?>
    </div>