Index: trunk/phase3/includes/db/DatabasePostgres.php |
— | — | @@ -198,7 +198,9 @@ |
199 | 199 | $this->doQuery( "SET client_min_messages = 'ERROR'" ); |
200 | 200 | } |
201 | 201 | |
202 | | - $this->doQuery( "SET client_encoding='UTF8'" ); |
| 202 | + $this->query( "SET client_encoding='UTF8'", __METHOD__ ); |
| 203 | + $this->query( "SET datestyle = 'ISO, YMD'", __METHOD__ ); |
| 204 | + $this->query( "SET timezone = 'GMT'", __METHOD__ ); |
203 | 205 | |
204 | 206 | global $wgDBmwschema; |
205 | 207 | if ( isset( $wgDBmwschema ) |