From 02e5128df9a29e9df5f57410982f7d6305c3388e Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Sat, 2 Aug 2003 12:53:16 +0000 Subject: [PATCH] (#2807) only explicitly order the admin section --- presentation/webpageTemplate.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/presentation/webpageTemplate.inc b/presentation/webpageTemplate.inc index c4bce89..9030a03 100644 --- a/presentation/webpageTemplate.inc +++ b/presentation/webpageTemplate.inc @@ -42,7 +42,10 @@ $nwPayLoad ->setHtml($nwestLoad); // set up the west payload //get section links if ($sectionName != "General") { - $sectionArray = $default->siteMap->getSectionLinks($sectionName); + + $bSortLinks = !($sectionName == "Administration"); + + $sectionArray = $default->siteMap->getSectionLinks($sectionName, $bSortLinks); $output1["links"] = $sectionArray["links"]; $output2["descriptions"] = $sectionArray["descriptions"]; -- libgit2 0.21.4