CRM-17663 - Fix missing dashboard names
authorColeman Watts <coleman@civicrm.org>
Fri, 12 Aug 2016 03:55:40 +0000 (23:55 -0400)
committerColeman Watts <coleman@civicrm.org>
Fri, 12 Aug 2016 03:55:40 +0000 (23:55 -0400)
CRM/Upgrade/Incremental/sql/4.7.11.mysql.tpl

index f61c3ac6ffa460e7bc99f43a294d77313530bc02..75137bd1b41deaa70a337106b3b5d15aeb931c95 100644 (file)
@@ -8,5 +8,11 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES
   (NULL, 1076, "RE", "La RĂ©union"),
   (NULL, 1076, "YT", "Mayotte");
 
+-- CRM-17663 Fix missing dashboard names
+UPDATE civicrm_dashboard SET name = 'activity' WHERE (name IS NULL OR name = '') AND url LIKE "civicrm/dashlet/activity?%";
+UPDATE civicrm_dashboard SET name = 'myCases' WHERE (name IS NULL OR name = '') AND url LIKE "civicrm/dashlet/myCases?%";
+UPDATE civicrm_dashboard SET name = 'allCases' WHERE (name IS NULL OR name = '') AND url LIKE "civicrm/dashlet/allCases?%";
+UPDATE civicrm_dashboard SET name = 'casedashboard' WHERE (name IS NULL OR name = '') AND url LIKE "civicrm/dashlet/casedashboard?%";
+
 -- CRM-18508 Display State/Province in event address in registration emails
 {include file='../CRM/Upgrade/4.7.11.msg_template/civicrm_msg_template.tpl'}
\ No newline at end of file