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

awful workaround

parent b488608a
Branches
Tags
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