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

awful workaround

parent a9c854ff
Branches
Tags
1 merge request!3Noblogs 5.4
......@@ -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