diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-03 08:20:56 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-03 08:20:56 +0000 |
commit | 197d82fb8dae4e9a10655acdc572ef2ea3b87957 (patch) | |
tree | 66e0841ace05ad6a1e526b654ff0058486f164a7 | |
parent | 80f533d307fdda4ccb9691fec83f0ab115320585 (diff) | |
download | brdo-197d82fb8dae4e9a10655acdc572ef2ea3b87957.tar.gz brdo-197d82fb8dae4e9a10655acdc572ef2ea3b87957.tar.bz2 |
#188498 follow up by pwolanin: using double quotes in pgsql queries is not possible
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
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))); } |