I think this is a bug in Sugar. I will report as a bug, but in meantime I fixed by making the following changes.
In file modules\Leads\metadata\listviewdefs.php
Change
Code:
'CREATED_BY' => array(
'width' => '10',
'label' => 'LBL_CREATED'), To
Code:
'CREATED_BY_NAME' => array(
'width' => '10',
'label' => 'LBL_CREATED'), Then in file modules\Leads\Lead.php
Change
Code:
function fill_in_additional_list_fields()
{
$this->fill_in_additional_detail_fields();
$this->get_account();
} To
Code:
function fill_in_additional_list_fields()
{
if($this->force_load_details == true)
$this->fill_in_additional_detail_fields();
$this->get_account();
}
Bookmarks