From 197d82fb8dae4e9a10655acdc572ef2ea3b87957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Mon, 3 Dec 2007 08:20:56 +0000 Subject: #188498 follow up by pwolanin: using double quotes in pgsql queries is not possible --- modules/system/system.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/system/system.install') diff --git a/modules/system/system.install b/modules/system/system.install index 7762455c0..70dc670b2 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2693,7 +2693,7 @@ function system_update_6037() { function system_update_6038() { $ret = array(); if (db_table_exists('profile_fields')) { - $ret[] = update_sql('UPDATE {profile_fields} SET category = "Account settings" WHERE LOWER(category) = "account"'); + $ret[] = update_sql("UPDATE {profile_fields} SET category = 'Account settings' WHERE LOWER(category) = 'account'"); if ($affectedrows = db_affected_rows()) { drupal_set_message(t('There were @affectedrows profile fields that used a reserved category name. They have been assigned to the category "Account settings".', array('@affectedrows' => $affectedrows))); } -- cgit v1.2.3