From f9a48ea6bfd1514e000a0d226bbe59da410e7660 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 7 Nov 2008 11:29:53 +0000 Subject: [PATCH] Missing quotes (bug #44308) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@268489 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pgsql/functions/pg-set-client-encoding.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/pgsql/functions/pg-set-client-encoding.xml b/reference/pgsql/functions/pg-set-client-encoding.xml index 8d9b42b808..eec43e3723 100644 --- a/reference/pgsql/functions/pg-set-client-encoding.xml +++ b/reference/pgsql/functions/pg-set-client-encoding.xml @@ -1,5 +1,5 @@ - + @@ -95,7 +95,7 @@ if (!$conn) { // Set the client encoding to UNICODE. Data will be automatically // converted from the backend encoding to the frontend. -pg_set_client_encoding($conn, UNICODE); +pg_set_client_encoding($conn, "UNICODE"); $result = pg_query($conn, "SELECT author, email FROM authors"); if (!$result) {