Skip to content
Snippets Groups Projects

#1296 Fix php72 warning on Campaigns.php

+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -171,7 +171,7 @@ class Campaigns extends CRMEntity {
if($return_value == null)
$return_value = Array();
else if($is_CampaignStatusAllowed) {
else if($is_CampaignStatusAllowed && is_array($return_value['header'])) {
$statusPos = count($return_value['header']) - 2; // Last column is for Actions, exclude that. Also the index starts from 0, so reduce one more count.
$return_value = $this->add_status_popup($return_value, $statusPos, 'Accounts');
}
Loading