1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Fix for BC constants.

This commit is contained in:
Cameron
2019-02-11 17:18:30 -08:00
parent db4f82ba2f
commit 3eec3d6029

View File

@@ -6,9 +6,9 @@
*/
// Legacy Fix.
define('MYSQL_ASSOC', 'assoc');
define('MYSQL_NUM', 'num');
define('MYSQL_BOTH', 'both');
define('MYSQL_ASSOC', 1);
define('MYSQL_NUM', 2);
define('MYSQL_BOTH', 3);
/**