OK, problem fixed. Nick: please take a l ook at lines 19-22 in the root/faq.php. Currently, it reads as follows:
require_once "maincore.php";
require_once "subheader.php";
include LOCALE.LOCALESET."faq.php";
require_once "side_left.php";
but should probably read like this:
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."faq.php";