aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet.pm
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-06-03 19:35:23 +0100
committerStruan Donald <struan@exo.org.uk>2011-06-03 19:35:23 +0100
commitfcf474b5effdab93eecf7193d314a5c4b284cc9d (patch)
treee9c3cbd93477cb9a2cb8ea094ec22e2b1ff0c813 /perllib/FixMyStreet.pm
parentd07bd0a10d8507c3952f81dcd7fdb251bec164c0 (diff)
Revert "quote names in SQL to get round problems with joining the users table"
This reverts commit d07bd0a10d8507c3952f81dcd7fdb251bec164c0.
Diffstat (limited to 'perllib/FixMyStreet.pm')
-rw-r--r--perllib/FixMyStreet.pm6
1 files changed, 1 insertions, 5 deletions
diff --git a/perllib/FixMyStreet.pm b/perllib/FixMyStreet.pm
index bea41910a..d63f708d2 100644
--- a/perllib/FixMyStreet.pm
+++ b/perllib/FixMyStreet.pm
@@ -121,11 +121,7 @@ sub dbic_connect_info {
AutoCommit => 1,
pg_enable_utf8 => 1,
};
-
- # need this to stop issues with user being a reserved word in postgres
- my $dbic_args = {
- quote_char => '"',
- };
+ my $dbic_args = {};
return [ $dsn, $user, $password, $dbi_args, $dbic_args ];
}