Skip to content
Snippets Groups Projects
Commit f004e0f4 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

default to UTF-8 client encoding for MySQL backend FS#1527

darcs-hash:20081108225954-7ad00-70ee787910f6410625c3aa1dde39ca58f97903ee.gz
parent 79d00841
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,9 @@ class auth_mysql extends auth_basic {
return;
}
// default to UTF-8, you rarely want something else
if(!isset($this->cnf['charset'])) $this->cnf['charset'] = 'utf8';
$this->defaultgroup = $conf['defaultgroup'];
// set capabilities based upon config strings set
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment