mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 08:12:40 +01:00
Pass connection to mysql_set_charset()
This commit is contained in:
parent
64facecb87
commit
5f341c79cb
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ final class AphrontMySQLDatabaseConnection extends AphrontDatabaseConnection {
|
||||||
if (!$ret) {
|
if (!$ret) {
|
||||||
$this->throwQueryException($conn);
|
$this->throwQueryException($conn);
|
||||||
}
|
}
|
||||||
mysql_set_charset('utf8');
|
mysql_set_charset('utf8', $conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
$profiler->endServiceCall($call_id, array());
|
$profiler->endServiceCall($call_id, array());
|
||||||
|
|
Loading…
Reference in a new issue