mirror of
https://github.com/e107inc/e107.git
synced 2025-08-05 14:17:49 +02:00
Suppressed constant already defined errors in e_db_mysqlTest
This commit is contained in:
@@ -30,9 +30,9 @@ class e_db_mysqlTest extends e_db_abstractTest
|
||||
|
||||
|
||||
// Simulate PHP 5.6
|
||||
define('MYSQL_ASSOC', 1);
|
||||
define('MYSQL_NUM', 2);
|
||||
define('MYSQL_BOTH', 3);
|
||||
defined('MYSQL_ASSOC') or define('MYSQL_ASSOC', 1);
|
||||
defined('MYSQL_NUM') or define('MYSQL_NUM', 2);
|
||||
defined('MYSQL_BOTH') or define('MYSQL_BOTH', 3);
|
||||
$this->db->__construct();
|
||||
$this->loadConfig();
|
||||
|
||||
|
Reference in New Issue
Block a user