fix bug with hhvm
This commit is contained in:
@@ -23,7 +23,7 @@ class DB {
|
|||||||
public static $user = '';
|
public static $user = '';
|
||||||
public static $password = '';
|
public static $password = '';
|
||||||
public static $host = 'localhost';
|
public static $host = 'localhost';
|
||||||
public static $port = null;
|
public static $port = 3306; //hhvm complains if this is null
|
||||||
public static $encoding = 'latin1';
|
public static $encoding = 'latin1';
|
||||||
|
|
||||||
// configure workings
|
// configure workings
|
||||||
@@ -112,7 +112,7 @@ class MeekroDB {
|
|||||||
public $user = '';
|
public $user = '';
|
||||||
public $password = '';
|
public $password = '';
|
||||||
public $host = 'localhost';
|
public $host = 'localhost';
|
||||||
public $port = null;
|
public $port = 3306;
|
||||||
public $encoding = 'latin1';
|
public $encoding = 'latin1';
|
||||||
|
|
||||||
// configure workings
|
// configure workings
|
||||||
|
|||||||
Reference in New Issue
Block a user