After a longer search, I think I fixed my issue.
I found the solution in another thread:
http://www.sugarcrm.com/forums/f3/pr...showing-68560/
I replaced the code in line 3252 of SugarBean.php:
Code:
if(empty($templates[$child_info['parent_type']]))
{
$class = $beanList[$child_info['parent_type']];
require_once($beanFiles[$class]);
$templates[$child_info['parent_type']] = new $class();
} with:
Code:
if(empty($templates[$child_info['parent_type']]))
{
$class = $beanList[$child_info['parent_type']];
$GLOBALS['log']->debug("custom_out class: ".$class);
$GLOBALS['log']->debug("custom_out child_info[parent_type]: ".$child_info['parent_type']);
if(!empty($class))
{
require_once($beanFiles[$class]);
$templates[$child_info['parent_type']] = new $class();
}
} Now, I was expecting a new error in detail in the error log after some testing, but nothing comes up. This can't have fixed the issue or has it?
Bookmarks