From: Brion Vibber Date: Tue, 19 Oct 2010 01:15:58 +0000 (-0700) Subject: Quoting fixes for postgres X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b865ded7ffca54534dac858f20eada3882af9d04;p=quix0rs-gnu-social.git Quoting fixes for postgres --- diff --git a/lib/pgsqlschema.php b/lib/pgsqlschema.php index e5442467c4..aa7f6733b0 100644 --- a/lib/pgsqlschema.php +++ b/lib/pgsqlschema.php @@ -342,7 +342,7 @@ class PgsqlSchema extends Schema */ function quoteIdentifier($name) { - return '"' . $name . '"'; + return $this->conn->quoteIdentifier($name); } function mapType($column)