Skip to content
Snippets Groups Projects
Commit 201fe1fd authored by lobo's avatar lobo
Browse files

Merge pull request #835 from dlobo/CRM-12197

CRM-12197 - fix notice
parents 4a5c90d2 180214e9
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,10 @@ Class CRM_Core_Form_Date {
'ending.month' => ts('From 1 Month Ago'),
'ending.week' => ts('From 1 Week Ago'),
);
$selector = array_merge($selector, $operators);
if (is_array($operators)) {
$selector = array_merge($selector, $operators);
}
$config = CRM_Core_Config::singleton();
//if fiscal year start on 1 jan then remove fiscal year task
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment