case_sample.tpl - Fix syntax for older MySQL
authorTim Otten <totten@civicrm.org>
Tue, 21 Apr 2015 20:01:32 +0000 (14:01 -0600)
committerTim Otten <totten@civicrm.org>
Tue, 21 Apr 2015 20:01:32 +0000 (14:01 -0600)
CRM/Case/xml/configuration.sample/case_sample.mysql.tpl
xml/templates/case_sample.tpl

index 250709fdec2c1863ae0ef3059d997a7eecebbec1..fb94f3ecbc1a9fd3828b109b2f250be47c7801d5 100644 (file)
@@ -12,7 +12,7 @@ SELECT @caseCompId := id FROM `civicrm_component` where `name` like 'CiviCase';
 -- * Case Types
 -- *
 -- *******************************************************/
-SELECT @max_wt  :=  COALESCE ( max(weight), 0 ) from civicrm_case_type;
+SELECT @max_wt  :=  COALESCE( max(weight), 0 ) from civicrm_case_type;
 
 INSERT IGNORE INTO `civicrm_case_type` (  {localize field='title'}`title`{/localize}, `name`, {localize field='description'}`description`{/localize}, `weight`, `is_reserved`, `is_active`) VALUES
   ({localize}'{ts escape="sql"}Housing Support{/ts}'{/localize}, 'housing_support', {localize}'{ts escape="sql"}Help homeless individuals obtain temporary and long-term housing{/ts}'{/localize}, @max_wt + 1, 0, 1),
index f44a65d006a07555e95a917e60afed51d754c037..cdcb7e3f61f63775334dea9c8edbbcbfb9095775 100644 (file)
@@ -12,7 +12,7 @@ SELECT @caseCompId := id FROM `civicrm_component` where `name` like 'CiviCase';
 -- * Case Types
 -- *
 -- *******************************************************/
-SELECT @max_wt  :=  COALESCE ( max(weight), 0 ) from civicrm_case_type;
+SELECT @max_wt  :=  COALESCE( max(weight), 0 ) from civicrm_case_type;
 
 INSERT IGNORE INTO `civicrm_case_type` (  `title`, `name`, `description`, `weight`, `is_reserved`, `is_active`) VALUES
   ('{ts}Housing Support{/ts}', 'housing_support', '{ts}Help homeless individuals obtain temporary and long-term housing{/ts}', @max_wt + 1, 0, 1),