Skip to content

Commit

Permalink
Merge pull request #4960 from ijdavie/issues/1723Hotfix7.8.x
Browse files Browse the repository at this point in the history
Fixed #1723 - All Opportunities by Lead Source Labels
  • Loading branch information
Dillon-Brown committed Jan 18, 2018
2 parents a795365 + 355eb51 commit 7cf98d5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ function getChartData($query)
$row = $db->fetchByAssoc($result);

while ($row != null){
if(isset($row['lead_source']) && $app_list_strings['lead_source_dom'][$row['lead_source']] ) {
$row['lead_source'] = $app_list_strings['lead_source_dom'][$row['lead_source']];
}
$dataSet[] = $row;
$row = $db->fetchByAssoc($result);
}
Expand Down

0 comments on commit 7cf98d5

Please sign in to comment.