Skip to content
Snippets Groups Projects
Commit 441a3bfc authored by Uma's avatar Uma
Browse files

Fixes #929 Calendar action buttons shuffled to consistent order

parent 48fb4cd8
No related branches found
No related tags found
1 merge request!557Fixes #929 Calendar action buttons shuffled to consistent order
......@@ -1276,14 +1276,14 @@ class Vtiger_Module_Model extends Vtiger_Module {
if($moduleName === "Calendar"){
$basicLinks[] = array(
'linktype' => 'BASIC',
'linklabel' => 'LBL_ADD_TASK',
'linkurl' => $this->getCreateTaskRecordUrl(),
'linklabel' => 'LBL_ADD_EVENT',
'linkurl' => $this->getCreateEventRecordUrl(),
'linkicon' => 'fa-plus'
);
$basicLinks[] = array(
$basicLinks[] = array(
'linktype' => 'BASIC',
'linklabel' => 'LBL_ADD_EVENT',
'linkurl' => $this->getCreateEventRecordUrl(),
'linklabel' => 'LBL_ADD_TASK',
'linkurl' => $this->getCreateTaskRecordUrl(),
'linkicon' => 'fa-plus'
);
} else {
......
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