diff --git a/Jenkinsfile b/Jenkinsfile index 2c7513f1..0e6fe9e2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -46,7 +46,7 @@ pipeline { steps { script { // Build site with CV Buildkit - sh "civibuild create ${params.BUILDNAME} --type drupal-clean --civi-ver 5.7.0 --url $WEBURL --admin-pass $ADMIN_PASS" + sh "civibuild create ${params.BUILDNAME} --type drupal-clean --civi-ver 5.9 --url $WEBURL --admin-pass $ADMIN_PASS" // Get target and PR branches name def prBranch = env.CHANGE_BRANCH diff --git a/uk.co.compucorp.civicrm.tasksassignments/tasksassignments.php b/uk.co.compucorp.civicrm.tasksassignments/tasksassignments.php index bcb7db41..668053c2 100755 --- a/uk.co.compucorp.civicrm.tasksassignments/tasksassignments.php +++ b/uk.co.compucorp.civicrm.tasksassignments/tasksassignments.php @@ -228,6 +228,7 @@ function tasksassignments_civicrm_tabset($tabsetName, &$tabs, $context) { 'id' => 'civitasks', 'url' => CRM_Utils_System::url('civicrm/contact/view/tasks'), 'title' => ts('Tasks'), + 'icon' => 'fa fa-list', 'weight' => 40, ); $documentsTab = civicrm_api3('TASettings', 'get', array( @@ -238,6 +239,7 @@ function tasksassignments_civicrm_tabset($tabsetName, &$tabs, $context) { 'id' => 'cividocuments', 'url' => CRM_Utils_System::url('civicrm/contact/view/documents'), 'title' => ts('Documents'), + 'icon' => 'fa fa-copy', 'weight' => 75, ); }