on the news page, change:
<?php
include('WA_CMS/addtosite.php');
echo WA_getCMSContent($database_PowerCMSConnection, $PowerCMSConnection, 'zNews', 'Title', false, $row_NewsPanelRS['ContentPageSetOrder']);
?></h2>
<?php
include('WA_CMS/addtosite.php');
echo WA_getCMSContent($database_PowerCMSConnection, $PowerCMSConnection, 'zNews', 'Content', false, $row_NewsPanelRS['ContentPageSetOrder']);
?>
to:
<?php
include('WA_CMS/addtosite.php');
echo WA_getCMSContent($database_PowerCMSConnection, $PowerCMSConnection, 'zNews', 'Title', false);
?></h2>
<?php
include('WA_CMS/addtosite.php');
echo WA_getCMSContent($database_PowerCMSConnection, $PowerCMSConnection, 'zNews', 'Content', false);
?>
it works on the index page, because the the code to show the content is after the recordset loop meaning that the recordset is empty, so an empty value is passed by this code $row_NewsPanelRS['ContentPageSetOrder']