Skip to content
Snippets Groups Projects

Fixes #929 Calendar action buttons shuffled to consistent order

Merged Uma requested to merge uma.s/vtigercrm:Calendar_Action_buttons_shuffle into master
+ 5
5
Compare changes
  • Side-by-side
  • Inline
@@ -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 {
Loading