From 9d20e97a3cd70ceb9e294f7d4d883f69cb796974 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Mon, 19 Nov 2018 15:22:34 -0500 Subject: [PATCH] dev/core#507 - Fix wrong version of jstree in search popop --- CRM/Contact/Form/Search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contact/Form/Search.php b/CRM/Contact/Form/Search.php index a9ea4d57d9..fb48489e65 100644 --- a/CRM/Contact/Form/Search.php +++ b/CRM/Contact/Form/Search.php @@ -388,8 +388,8 @@ class CRM_Contact_Form_Search extends CRM_Core_Form_Search { parent::buildQuickForm(); CRM_Core_Resources::singleton() // jsTree is needed for tags popup - ->addScriptFile('civicrm', 'packages/jquery/plugins/jstree/jquery.jstree.js', 0, 'html-header', FALSE) - ->addStyleFile('civicrm', 'packages/jquery/plugins/jstree/themes/default/style.css', 0, 'html-header'); + ->addScriptFile('civicrm', 'bower_components/jstree/dist/jquery.jstree.min.js', 0, 'html-header', FALSE) + ->addStyleFile('civicrm', 'bower_components/jstree/dist/themes/default/style.min.css', 0, 'html-header'); // some tasks.. what do we want to do with the selected contacts ? $this->_taskList = $this->buildTaskList(); -- 2.25.1