From 40ee1db2014264a7e842e7fb0092edcd462fb334 Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Sat, 4 Feb 2017 09:31:57 +0000 Subject: [PATCH] space after comma --- CRM/Core/I18n/Schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/I18n/Schema.php b/CRM/Core/I18n/Schema.php index 5372e651eb..ad79b37fe4 100644 --- a/CRM/Core/I18n/Schema.php +++ b/CRM/Core/I18n/Schema.php @@ -193,7 +193,7 @@ class CRM_Core_I18n_Schema { foreach ($columns[$table] as $column => $type) { $queries[] = "ALTER TABLE {$table} CHANGE `{$column}_{$retain}` `{$column}` {$type}"; foreach ($locales as $loc) { - if (strcmp($loc,$retain) !== 0) { + if (strcmp($loc, $retain) !== 0) { $dropQueries[] = "ALTER TABLE {$table} DROP {$column}_{$loc}"; } } -- 2.25.1