From: Coleman Watts Date: Fri, 12 Aug 2016 03:55:40 +0000 (-0400) Subject: CRM-17663 - Fix missing dashboard names X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4cb39ac2621b7da1c641a4c188d0e0f29ab43ba4;p=civicrm-core.git CRM-17663 - Fix missing dashboard names --- 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