Hi,
I propose to replace these 3 messages:
$strCoordsNotSet = 'table_coords table not found or not set in config.inc.php3';
$strInfoNotSet = 'table_info table not found or not set in config.inc.php3';
$strRelationNotSet = 'Relationtable not found or not set in config.inc.php3';
by this:
$strNotSet = '%s table not found or not set in config.inc.php(3)';
plus, in pdf_pages.php3:
if(!isset($relex)){die(sprintf($strNotSet,'relation'));} if(!isset($info)){die(sprintf($strNotSet,'table_info'));} if(!isset($coords)){die(sprintf($strNotSet,'table_coords'));}