1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-25 00:02:41 +01:00

Pass connection to mysql_set_charset()

This commit is contained in:
vrana 2012-04-05 17:23:29 -07:00
parent 64facecb87
commit 5f341c79cb

View file

@ -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());