Ok, confirmed,... and I'm working on it. I'll post a fix when I've solved it.
UPDATE!DOohHHH...! Me brain dead sometimes... The
$autotext generated an empty (besides 2 single quotes) error message if no template for it could be found, regardless if
&automessage was set!
Replace the code on line 105 - 110 with this (without the php tags off course)
//<?php
if($isPostBack){
$report = (($tmp=efLoadTemplate($report))!==false)?$tmp:$_lang['ef_no_doc'] . " '$report'";
if($thankyou) $thankyou = (($tmp=efLoadTemplate($thankyou))!==false )?$tmp:$_lang['ef_no_doc'] . " '$thankyou'";
if($autotext) $autotext = (($tmp=efLoadTemplate($autotext))!==false )?$tmp:$_lang['ef_no_doc'] . " '$autotext'";
}
//?>