From: patrickslee Date: Sun, 12 Mar 2006 21:40:24 +0000 (+0000) Subject: PostgreSQL 7.x pg_dump command line options fix X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=ef03a260e557fdaa8566b72fbca612703b692147;p=moodle.git PostgreSQL 7.x pg_dump command line options fix --- diff --git a/admin/utfdbmigrate.php b/admin/utfdbmigrate.php index 5620d7a726..280605c742 100755 --- a/admin/utfdbmigrate.php +++ b/admin/utfdbmigrate.php @@ -199,7 +199,7 @@ function db_migrate2utf8(){ //Eloy: Perhaps some type of limit parameter here } else { $cluster = ''; } - $cmd = "PGPASSWORD={$CFG->dbpass} pg_dump -Fp -E 'UNICODE' -O -x -U {$CFG->dbuser}$cluster"; + $cmd = "PGPASSWORD={$CFG->dbpass} PGCLIENTENCODING='UNICODE' pg_dump -Fp -O -x -U {$CFG->dbuser}$cluster"; if ($CFG->dbhost) { $host = split(":", $CFG->dbhost); if ($host[0]) $cmd .= " -h {$host[0]}";