Skip to content
Snippets Groups Projects
Commit d6ed8e13 authored by Prasad's avatar Prasad
Browse files

Fixes #813: Invalid initialization of the array variable.

parent 395dce49
No related branches found
No related tags found
1 merge request!311Language italian translation
......@@ -91,10 +91,10 @@ class EmailTemplates_Module_Model extends Vtiger_Module_Model {
}
if(is_array($allFields) && is_array($allRelFields)){
$allFields = array_merge($allFields, $allRelFields);
$allRelFields="";
$allRelFields = array();
}
$allOptions[vtranslate($module, $module)] = $allFields;
$allFields = "";
$allFields = array();
}
$option = array(vtranslate('LBL_CURRENT_DATE'), '$custom-currentdate$');
......@@ -226,4 +226,4 @@ class EmailTemplates_Module_Model extends Vtiger_Module_Model {
public function isQuickSearchEnabled() {
return false;
}
}
\ No newline at end of file
}
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