From feadbad3db0675421f67e1e41a6d63ca45fb18fd Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 14 Aug 2014 14:58:02 -0400 Subject: [PATCH] Toolkit.php update the call to secondaryParagraph to be before the main so we can generate the section links. --- Toolkit/Template/Page/Toolbox.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Toolkit/Template/Page/Toolbox.php b/Toolkit/Template/Page/Toolbox.php index ea92494..6745c88 100644 --- a/Toolkit/Template/Page/Toolbox.php +++ b/Toolkit/Template/Page/Toolbox.php @@ -168,6 +168,8 @@ class Toolkit_Template_Page_Toolbox implements Toolkit_Template_Page_IBody = (defined('COUPONS')) ? $this->_getPageCoupons($this->id) : null; + $tPage->secondaryParagraphs + = $this->getSecondaryParagraphs($this->id); // $tPage->specials = $specials; $tPage->staticPageContent = $this->getStaticPageContent($this->id); @@ -175,8 +177,7 @@ class Toolkit_Template_Page_Toolbox implements Toolkit_Template_Page_IBody = $breadCrumbsBuilder->toHtml($this->id); $tPage->primaryParagraph = $this->getPrimaryParagraph($this->id); - $tPage->secondaryParagraphs - = $this->getSecondaryParagraphs($this->id); + } return $tPage; -- 2.17.1