Skip to content
Snippets Groups Projects
Commit aee61678 authored by Joe Oblivian's avatar Joe Oblivian Committed by agata
Browse files

awful workaround

parent a83bb8e0
Branches
No related tags found
No related merge requests found
......@@ -723,6 +723,15 @@ class hyperdb extends wpdb {
$collate = null;
$this->set_charset($this->dbhs[$dbhname], $charset, $collate);
if ( !isset( $charset ) )
$charset = null;
if ( !isset( $collate ) )
$collate = null;
// AI workaround: set all queries to latin1
$this->set_charset($this->dbhs[$dbhname], 'latin1');
$this->dbh = $this->dbhs[$dbhname]; // needed by $wpdb->_real_escape()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment