diff --git a/lib/PageRender.php b/lib/PageRender.php index ad5d454..7d86a54 100644 --- a/lib/PageRender.php +++ b/lib/PageRender.php @@ -98,8 +98,9 @@ class PageRender extends Visitor { $this->visit('',$attribute); } - // Sort our attribute values for display. - $this->template->sort(); + // Sort our attribute values for display, if we are the custom template. + if ($this->template->getID() == 'none') + $this->template->sort(); } }