From 4cb39ac2621b7da1c641a4c188d0e0f29ab43ba4 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Thu, 11 Aug 2016 23:55:40 -0400 Subject: [PATCH] CRM-17663 - Fix missing dashboard names --- CRM/Upgrade/Incremental/sql/4.7.11.mysql.tpl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CRM/Upgrade/Incremental/sql/4.7.11.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.7.11.mysql.tpl index f61c3ac6ff..75137bd1b4 100644 --- a/CRM/Upgrade/Incremental/sql/4.7.11.mysql.tpl +++ b/CRM/Upgrade/Incremental/sql/4.7.11.mysql.tpl @@ -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 -- 2.25.1