2013-03-28, 03:31:01
I ended up just editing the edit.php page
added at 169 and the closing tag at 180[/quote]
added
Code:
if ($page['template'] == 'links.php'){
PHP Code:
foreach ($pagesArray as $page) {
if ($page['template'] == 'links.php'){
if ($page['parent'] != '') {
$parentdata = getXML(GSDATAPAGESPATH . $page['parent'] .'.xml');
$parentTitle = $parentdata->title;
$sort = $parentTitle .' '. $page['title'];
} else {
$sort = $page['title'];
}
$page = array_merge($page, array('sort' => $sort));
$pagesArray_tmp[$count] = $page;
$count++;
}
}