From: <var...@us...> - 2016-02-11 18:12:12
|
Revision: 9801 http://sourceforge.net/p/phpwiki/code/9801 Author: vargenau Date: 2016-02-11 18:12:10 +0000 (Thu, 11 Feb 2016) Log Message: ----------- Use PDO syntax Modified Paths: -------------- trunk/lib/WikiDB/backend/PDO_mysql.php Modified: trunk/lib/WikiDB/backend/PDO_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_mysql.php 2016-02-11 18:00:42 UTC (rev 9800) +++ trunk/lib/WikiDB/backend/PDO_mysql.php 2016-02-11 18:12:10 UTC (rev 9801) @@ -43,7 +43,7 @@ } if ($this->_serverinfo['version'] > 401.0) { - mysql_query("SET NAMES 'UTF-8'"); + $this->_dbh->query("SET NAMES 'UTF-8'"); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |